Potion/web/src/layouts/WebLayout.tsx
2025-10-29 21:27:47 -07:00

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>
</>
);
}