feat: Dashboard page composing full design system

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-03-18 10:06:41 +01:00
parent cd0d02a61b
commit 5f6bcd374d
3 changed files with 699 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
import { Routes, Route } from 'react-router-dom'
import { Dashboard } from './pages/Dashboard/Dashboard'
export default function App() {
return <div>Cameleer3 Design System</div>
return (
<Routes>
<Route path="/" element={<Dashboard />} />
</Routes>
)
}