Spaces:
Sleeping
Sleeping
| "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> | |
| ); | |
| } | |