first commit

This commit is contained in:
2025-12-19 13:01:31 +00:00
parent a8ebdd5b93
commit c38e3439e2
24 changed files with 2741 additions and 0 deletions

19
src/routes/__root.tsx Normal file
View File

@@ -0,0 +1,19 @@
import { createRootRoute, Outlet } from "@tanstack/react-router";
import Header from "../ui/Header";
import Footer from "../ui/Footer";
const RootLayout = () => {
return (
<>
<Header />
<main className="p-4 min-h-screen">
<Outlet />
</main>
<Footer />
</>
);
};
export const Route = createRootRoute({
component: RootLayout,
});