blob: 744f0c5c5cf80f61c7dd5b8db1ffd456ec044498 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>
);
}
|