fix: main page

This commit is contained in:
moolcoov
2025-03-01 12:39:09 +03:00
parent 433c1e8b46
commit 65f73fb4a0
17 changed files with 383 additions and 361 deletions
@@ -0,0 +1,15 @@
import { Header } from "@/components/layout/header";
import { Outlet } from "react-router";
const NavbarLayout = () => {
return (
<>
<Header />
<div className="m-auto mt-6 w-full max-w-5xl">
<Outlet />
</div>
</>
);
};
export { NavbarLayout };