Files
Magent/frontend/app/layout.tsx
T
Assclaw 4d67567d4c
Magent CI/CD / verify (push) Successful in 10m55s
Magent CI/CD / deploy-prod (push) Skipped
Magent CI/CD / deploy-beta (push) Successful in 1m58s
Simplify navigation and modernize profile and sign-in
2026-09-06 18:24:18 +12:00

27 lines
662 B
TypeScript

import './globals.css'
import './ops-redesign.css'
import './admin/config.css'
import './account.css'
import type { ReactNode } from 'react'
import BrandingFavicon from './ui/BrandingFavicon'
import ApplicationChrome from './ui/ApplicationChrome'
export const metadata = {
title: 'Magent',
description: 'Request timeline and AI triage for media requests',
}
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en" data-theme="dark">
<body>
<BrandingFavicon />
<div className="page">
<ApplicationChrome />
{children}
</div>
</body>
</html>
)
}