2025-06-30 09:24:37 +07:00
|
|
|
import { Outlet } from "react-router-dom";
|
|
|
|
|
import { Header } from "./_components/header";
|
|
|
|
|
import { Footer } from "./_components/footer";
|
|
|
|
|
|
|
|
|
|
export default function Layout() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex min-h-screen flex-col bg-primary-50">
|
|
|
|
|
<Header />
|
2025-07-28 23:26:22 +07:00
|
|
|
<main className="flex-1">
|
2025-06-30 09:24:37 +07:00
|
|
|
<Outlet />
|
|
|
|
|
</main>
|
|
|
|
|
<Footer />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|