Add global admin user-view preview
Magent CI/CD / verify (push) Successful in 10m37s
Magent CI/CD / deploy-prod (push) Skipped
Magent CI/CD / deploy-beta (push) Successful in 22s

This commit is contained in:
2026-09-01 17:04:25 +12:00
parent b3c41f6dea
commit 7ed0f4b103
7 changed files with 228 additions and 55 deletions
+4 -2
View File
@@ -1,11 +1,12 @@
import './globals.css'
import './ops-redesign.css'
import type { ReactNode } from 'react'
import HeaderActions from './ui/HeaderActions'
import HeaderIdentity from './ui/HeaderIdentity'
import BrandingFavicon from './ui/BrandingFavicon'
import BrandingLogo from './ui/BrandingLogo'
import HeaderActions from './ui/HeaderActions'
import HeaderIdentity from './ui/HeaderIdentity'
import SiteStatus from './ui/SiteStatus'
import UserViewBanner from './ui/UserViewBanner'
export const metadata = {
title: 'Magent',
@@ -36,6 +37,7 @@ export default function RootLayout({ children }: { children: ReactNode }) {
<HeaderActions />
</div>
</header>
<UserViewBanner />
<SiteStatus />
{children}
</div>