Files

30 lines
1.1 KiB
TypeScript
Raw Permalink Normal View History

import React from 'react';
2026-02-08 02:32:45 -05:00
interface GridShellProps {
children: React.ReactNode;
}
export function GridShell({ children }: GridShellProps) {
return (
<div className="min-h-screen bg-neutral-950 text-neutral-200 p-4 md:p-8">
<div className="max-w-7xl mx-auto">
<header className="mb-8 flex items-center justify-between">
<div>
<h1 className="text-3xl font-bold tracking-tight text-white mb-1">Mission Control</h1>
2026-02-08 03:08:57 -05:00
2026-02-08 02:32:45 -05:00
</div>
<div className="flex gap-2">
{/* Future header controls */}
<div className="w-2 h-2 rounded-full bg-emerald-500 animate-pulse" />
<span className="text-xs font-mono text-emerald-500">SYSTEM ONLINE</span>
</div>
</header>
<main className="grid grid-cols-1 md:grid-cols-4 lg:grid-cols-6 gap-4 auto-rows-[200px]">
{children}
</main>
2026-02-08 02:32:45 -05:00
</div>
</div>
2026-02-08 02:32:45 -05:00
);
}