18 lines
510 B
TypeScript
18 lines
510 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
interface AppLayoutProps {
|
|
children: ReactNode
|
|
}
|
|
|
|
export default function AppLayout({ children }: AppLayoutProps) {
|
|
return (
|
|
<div className="bg-background text-foreground min-h-screen font-mono">
|
|
<header className="glow-red border-primary border-b-4 px-6 py-4">
|
|
<h1 className="text-primary text-2xl font-bold uppercase tracking-widest">
|
|
BUCKETS
|
|
</h1>
|
|
</header>
|
|
<main className="p-6">{children}</main>
|
|
</div>
|
|
)
|
|
}
|