Files
5cd2f65c-c800-46e7-a673-288…/src/App.tsx
2026-07-04 20:55:28 +00:00

18 lines
567 B
TypeScript

import { Routes, Route } from 'react-router-dom';
import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import DashboardPage from "@/pages/DashboardPage";
import AiCommandCenterPage from "@/pages/AiCommandCenterPage";
export default function App() {
return (
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<HomePage />} />
<Route path="/dashboard" element={<DashboardPage />} />
<Route path="/ai-command-center" element={<AiCommandCenterPage />} />
</Route>
</Routes>
);
}