Spaces:
Sleeping
Sleeping
File size: 360 Bytes
3b6f7d2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | "use client";
import AppNav from "./AppNav";
import { ReactNode } from "react";
export default function AppShell({ children }: { children: ReactNode }) {
return (
<div className="min-h-screen bg-white flex flex-col">
<AppNav />
<main className="flex-1 max-w-7xl mx-auto w-full px-6 py-8">
{children}
</main>
</div>
);
}
|