import React from 'react'; import { Container } from '@/ui/Container'; import { Grid } from '@/ui/Grid'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; import { Link } from '@/ui/Link'; import { Surface } from '@/ui/Surface'; import { BrandMark } from '@/ui/BrandMark'; import { Box } from '@/ui/Box'; interface AppFooterProps { children?: React.ReactNode; } /** * AppFooter is the bottom section of the application. * It follows the "Telemetry Workspace" structure: matte surface, thin separators, minimal. * Aligned with ControlBar (Header) design. */ export function AppFooter({ children }: AppFooterProps) { return ( {children ? ( children ) : ( INFRASTRUCTURE The ultimate companion for sim racers. Track your performance, manage your team, and compete in leagues. Platform Leagues Teams Leaderboards Support Documentation System Status Contact Us Legal Privacy Policy Terms of Service )} © {new Date().getFullYear()} GridPilot. All rights reserved. v1.0.0-stable ); }