Files
gridpilot.gg/apps/website/components/app/AppShell.tsx
2026-01-19 01:24:07 +01:00

25 lines
504 B
TypeScript

import React from 'react';
import { Box } from '@/ui/Box';
interface AppShellProps {
children: React.ReactNode;
}
/**
* AppShell is the root container for the entire application layout.
* It provides the base background and layout structure.
*/
export function AppShell({ children }: AppShellProps) {
return (
<Box
minHeight="100vh"
bg="#0C0D0F"
color="var(--ui-color-text-high)"
display="flex"
flexDirection="col"
>
{children}
</Box>
);
}