From d6ac0ddd3ac6709525ca0819cf54b801122dc775 Mon Sep 17 00:00:00 2001 From: minhtrannhat Date: Mon, 6 Jan 2025 12:00:00 -0500 Subject: [PATCH] feat(web): add root layout component --- web/app/layout.tsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 web/app/layout.tsx 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} + + ); +}