diff --git a/src/App.tsx b/src/App.tsx index 21c0cfa..97c505c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,12 +3,14 @@ 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 ( }> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 4994796..c0aba9f 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -29,6 +29,8 @@ export default function Layout() { "name": "Metrics", "href": "#metrics" }, { name: "Dashboard", href: "/dashboard" }, + { name: "Ai Command Center", href: "/ai-command-center" }, + ]; diff --git a/src/pages/AiCommandCenterPage.tsx b/src/pages/AiCommandCenterPage.tsx new file mode 100644 index 0000000..5af4a5c --- /dev/null +++ b/src/pages/AiCommandCenterPage.tsx @@ -0,0 +1,27 @@ +import FeaturesIconCards from "@/components/sections/features/FeaturesIconCards"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; + +export default function AiCommandCenterPage() { + return ( + <> +
+
+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 6f95978..4553036 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -7,4 +7,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, { path: '/dashboard', label: 'Dashboard', pageFile: 'DashboardPage' }, + { path: '/ai-command-center', label: 'Ai Command Center', pageFile: 'AiCommandCenterPage' }, ];