first commit

This commit is contained in:
2023-10-12 18:29:47 +05:00
commit 826ac1f621
64 changed files with 5159 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Outlet } from "react-router-dom";
import Header from "../components/Header";
function DefaultLayout() {
return (
<div className="min-h-screen flex flex-col bg-[#F2F2F2]">
<Header />
<Outlet />
</div>
);
}
export default DefaultLayout;