diff options
Diffstat (limited to 'frontend/app/layout.tsx')
| -rw-r--r-- | frontend/app/layout.tsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx new file mode 100644 index 0000000..744f0c5 --- /dev/null +++ b/frontend/app/layout.tsx @@ -0,0 +1,15 @@ +import type { Metadata } from "next"; +import "./globals.css"; + +export const metadata: Metadata = { + title: "Prism v2", + description: "Financial overview dashboard" +}; + +export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { + return ( + <html lang="en"> + <body>{children}</body> + </html> + ); +} |
