diff --git a/web/app/layout.tsx b/web/app/layout.tsx new file mode 100644 index 0000000..1c98c02 --- /dev/null +++ b/web/app/layout.tsx @@ -0,0 +1,19 @@ +import type { Metadata } from 'next'; +import './globals.css'; + +export const metadata: Metadata = { + title: 'IncidentOps', + description: 'Incident Management Platform', +}; + +export default function RootLayout({ + children, +}: { + children: React.ReactNode; +}) { + return ( + + {children} + + ); +}