FieldOps/apps/admin-web/app/layout.tsx
2026-05-16 12:02:15 +01:00

26 lines
559 B
TypeScript

import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'FieldOps Admin',
description: 'Backoffice — coming soon.',
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en">
<body
style={{
fontFamily: 'system-ui, sans-serif',
margin: 0,
minHeight: '100vh',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
}}
>
{children}
</body>
</html>
);
}