diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-17 12:46:13 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2026-05-17 12:46:13 -0700 |
| commit | 1482422f2f5b236cdcdff4429ae06bb55dca4083 (patch) | |
| tree | 4653cb4986a8a138f84dbec934effb0d011751d3 /frontend/app/layout.tsx | |
Add stack start and stop scripts
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> + ); +} |
