fixng some changes

This commit is contained in:
2024-12-12 09:38:54 -05:00
parent 500f7a42fc
commit 67cba8ca10
6 changed files with 430 additions and 24 deletions

View File

@@ -1,8 +1,7 @@
import { Provider } from "../components/ui/provider"
import "../styles/globals.css";
import Navbar from "../components/Navbar";
import PopNav from "@src/components/PopNav/page";
export const metadata = {
title: 'Ballistic Builder',
description: 'Freedom On',
@@ -16,6 +15,7 @@ export default function RootLayout(props: { children: React.ReactNode }) {
<body className="bg-slate-200 ">
<Provider>
<Navbar />
<PopNav />
{children}</Provider>
</body>
</html>