Initial commit
This commit is contained in:
29
components/dashboard/GridShell.tsx
Normal file
29
components/dashboard/GridShell.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
import React from 'react';
|
||||
|
||||
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>
|
||||
<p className="text-neutral-400 text-sm">System Status & Global Overview</p>
|
||||
</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>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user