19 lines
331 B
TypeScript
19 lines
331 B
TypeScript
import { Outlet } from "react-router-dom";
|
|
import Navigation from "../components/Navigation";
|
|
|
|
|
|
export default function WebLayout() {
|
|
|
|
return (
|
|
<>
|
|
<div className="bg-gray-100 min-h-[100vh]">
|
|
<Navigation />
|
|
<div className="pt-0 md:pt-14">
|
|
<Outlet />
|
|
</div>
|
|
</div>
|
|
</>
|
|
|
|
);
|
|
}
|