Added navbar

This commit is contained in:
2025-03-17 22:29:43 +01:00
parent c2c387648f
commit 268f404cbe

View File

@@ -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 }) {
<Links />
</head>
<body>
<NavBar />
{children}
<ScrollRestoration />
<Scripts />