OPS-02: dev-server + next.js zentrale statusseite

This commit is contained in:
sysops
2026-08-28 08:21:27 +02:00
parent dff760e1ba
commit 81ebdd892b
7 changed files with 297 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
export const metadata = {
title: "NEXARCH Systemstatus",
};
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>
);
}