trojan0x's picture
Upload Next.js frontend source
3b6f7d2 verified
Raw
History Blame Contribute Delete
360 Bytes
"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>
);
}