Files
nexarch/web/lic-admin/app/layout.tsx
T

18 lines
345 B
TypeScript

export const metadata = {
title: "NEXARCH Lizenz- und Modulverwaltung",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="de">
<body style={{ fontFamily: "system-ui, sans-serif", margin: 0, background: "#f5f6f8" }}>
{children}
</body>
</html>
);
}