32 lines
788 B
TypeScript
32 lines
788 B
TypeScript
import type { Metadata, Viewport } from 'next';
|
|
import { Providers } from './providers';
|
|
import './globals.css';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'FieldOps — Operator',
|
|
description: 'Industrial operator console.',
|
|
manifest: '/manifest.webmanifest',
|
|
applicationName: 'FieldOps Operator',
|
|
appleWebApp: {
|
|
capable: true,
|
|
title: 'FieldOps Operator',
|
|
statusBarStyle: 'default',
|
|
},
|
|
};
|
|
|
|
export const viewport: Viewport = {
|
|
themeColor: '#0f172a',
|
|
width: 'device-width',
|
|
initialScale: 1,
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="min-h-screen bg-background font-sans antialiased">
|
|
<Providers>{children}</Providers>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|