2024-12-13 09:38:30 -05:00
|
|
|
//import { Provider } from "../components/ui/provider"
|
2024-11-20 23:16:26 -05:00
|
|
|
import "../styles/globals.css";
|
2024-12-12 09:38:39 -05:00
|
|
|
import Navbar from "../components/Navbar";
|
2024-12-12 09:38:54 -05:00
|
|
|
import PopNav from "@src/components/PopNav/page";
|
2024-12-13 09:51:15 -05:00
|
|
|
import { Inter } from 'next/font/google'
|
|
|
|
|
|
|
|
|
|
|
2024-11-20 17:08:05 -05:00
|
|
|
export const metadata = {
|
2024-11-21 16:17:03 -05:00
|
|
|
title: 'Ballistic Builder',
|
|
|
|
|
description: 'Freedom On',
|
2024-11-20 17:08:05 -05:00
|
|
|
}
|
2024-11-14 12:45:58 -05:00
|
|
|
|
2024-12-13 09:51:15 -05:00
|
|
|
const inter = Inter({
|
|
|
|
|
subsets: ['latin'],
|
|
|
|
|
display: 'swap',
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
2024-11-21 13:03:00 -05:00
|
|
|
export default function RootLayout(props: { children: React.ReactNode }) {
|
2024-12-12 09:38:39 -05:00
|
|
|
const { children } = props;
|
2024-11-21 13:03:00 -05:00
|
|
|
|
2024-11-14 12:45:58 -05:00
|
|
|
return (
|
2024-12-13 09:51:15 -05:00
|
|
|
<html suppressHydrationWarning className={inter.className}>
|
2024-12-12 09:38:39 -05:00
|
|
|
<body className="bg-slate-200 ">
|
2024-12-13 09:38:30 -05:00
|
|
|
|
2024-12-12 09:38:39 -05:00
|
|
|
<Navbar />
|
2024-12-12 09:38:54 -05:00
|
|
|
<PopNav />
|
2024-12-13 09:38:30 -05:00
|
|
|
{children}
|
2024-12-12 09:38:39 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|
2024-11-20 17:08:05 -05:00
|
|
|
)
|
2024-12-11 16:51:57 -05:00
|
|
|
}
|