feat(web): set up React app shell with routing and layout

Adds react-router-dom with routes for ship list, dashboard, and rules pages.
Includes TopBar with navigation and mobile-first dark theme CSS.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Bas van Rossem
2026-02-19 16:20:22 +01:00
parent 76ad839abb
commit 5f275bfcc7
7 changed files with 182 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
import TopBar from '../components/layout/TopBar';
import PageContainer from '../components/layout/PageContainer';
export default function RulesPage() {
return (
<>
<TopBar title="Battle Reference" />
<PageContainer>
<p style={{ color: 'var(--color-text-muted)' }}>Rules reference coming soon...</p>
</PageContainer>
</>
);
}