2023-03-02 08:42:51 +00:00
|
|
|
|
2023-02-26 15:34:45 +00:00
|
|
|
import './globals.css'
|
2023-03-02 08:42:51 +00:00
|
|
|
import Navbar from './components/Navbar'
|
2023-02-26 15:34:45 +00:00
|
|
|
|
|
|
|
|
export const metadata = {
|
2023-03-02 08:42:51 +00:00
|
|
|
title: 'Fold Bank - Dashboard',
|
|
|
|
|
description: 'Be painfully aware.',
|
2023-02-26 15:34:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en">
|
2023-03-02 08:42:51 +00:00
|
|
|
<body>
|
|
|
|
|
<Navbar />
|
|
|
|
|
{children}
|
|
|
|
|
</body>
|
2023-02-26 15:34:45 +00:00
|
|
|
</html>
|
|
|
|
|
)
|
|
|
|
|
}
|