31 lines
832 B
TypeScript
31 lines
832 B
TypeScript
import "./styles/tokens.css";
|
|
import "./globals.css";
|
|
import "./ops-redesign.css";
|
|
import "./admin/config.css";
|
|
import "./account.css";
|
|
import "./workspace.css";
|
|
import "./portal/issue-flow.css";
|
|
import type { ReactNode } from "react";
|
|
import BrandingFavicon from "./ui/BrandingFavicon";
|
|
import FeatureGate from "./ui/FeatureGate";
|
|
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 />
|
|
<FeatureGate>{children}</FeatureGate>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|