23 lines
369 B
TypeScript
23 lines
369 B
TypeScript
|
|
import './globals.css'
|
|
import Navbar from './components/Navbar'
|
|
|
|
export const metadata = {
|
|
title: 'Fold Bank - Dashboard',
|
|
description: 'Be painfully aware.',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
<Navbar />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|