Files
beaver_project/app-instance/frontend/app/(app)/layout.tsx
2026-03-13 16:40:08 +08:00

18 lines
376 B
TypeScript

import Header from '@/components/Header';
import AuthGuard from '@/components/AuthGuard';
export default function AppLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<div className="min-h-screen bg-background text-foreground">
<Header />
<main className="pt-16">
<AuthGuard>{children}</AuthGuard>
</main>
</div>
);
}