(chore): initial MVP release v0.1.0

This commit is contained in:
2025-05-01 21:39:12 +05:30
commit bd9483374f
36 changed files with 10146 additions and 0 deletions

13
pages/layout/root.tsx Normal file
View File

@@ -0,0 +1,13 @@
import Footer from "@/components/footer";
import Header from "@/components/header";
import { Outlet } from "react-router-dom";
export default function RootLayout() {
return (
<div className="flex flex-col min-w-[270px] p-4 space-y-4">
<Header />
<Outlet />
<Footer />
</div>
)
}