From 268f404cbede7f96587da2359144a95aa9d71a2c Mon Sep 17 00:00:00 2001 From: AINDUSTRIES Date: Mon, 17 Mar 2025 22:29:43 +0100 Subject: [PATCH] Added navbar --- app/root.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/root.tsx b/app/root.tsx index 9fc6636..fec5ca8 100644 --- a/app/root.tsx +++ b/app/root.tsx @@ -9,6 +9,7 @@ import { import type { Route } from "./+types/root"; import "./app.css"; +import NavBar from "./components/navbar"; export const links: Route.LinksFunction = () => [ { rel: "preconnect", href: "https://fonts.googleapis.com" }, @@ -33,6 +34,7 @@ export function Layout({ children }: { children: React.ReactNode }) { + {children}