This commit is contained in:
2025-02-22 20:58:25 +01:00
parent 5f4ad2296d
commit 72f6b60963
13 changed files with 72 additions and 174 deletions

11
app/templates/base.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { Outlet } from "react-router";
import Navbar from "../components/navbar";
export default function Base() {
return (
<>
<Navbar />
<Outlet />
</>
);
}