From f1ef5e8f857e062209969aeb7f62753ba89944c6 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 4 Jul 2026 20:55:28 +0000 Subject: [PATCH 1/2] Bob AI: Add ai-command-center page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/AiCommandCenterPage.tsx | 118 ++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 123 insertions(+) create mode 100644 src/pages/AiCommandCenterPage.tsx 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..0025d14 --- /dev/null +++ b/src/pages/AiCommandCenterPage.tsx @@ -0,0 +1,118 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function AiCommandCenterPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Get Started", href: "/contact" }} + /> + +
+ + + + + + + +
+ + +
+ ); +} \ No newline at end of file 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' }, ]; -- 2.49.1 From 9af97f8bfad35f07e9d115d9e2ee82473e15d320 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 4 Jul 2026 20:56:08 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/AiCommandCenterPage.tsx (snippet builder, 2 sections) --- src/pages/AiCommandCenterPage.tsx | 135 +++++------------------------- 1 file changed, 22 insertions(+), 113 deletions(-) diff --git a/src/pages/AiCommandCenterPage.tsx b/src/pages/AiCommandCenterPage.tsx index 0025d14..5af4a5c 100644 --- a/src/pages/AiCommandCenterPage.tsx +++ b/src/pages/AiCommandCenterPage.tsx @@ -1,118 +1,27 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; +import FeaturesIconCards from "@/components/sections/features/FeaturesIconCards"; import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; -import ContactCta from "@/components/sections/contact/ContactCta"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function AiCommandCenterPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "/contact" }} - /> - -
- - - - - - - -
- - -
+ <> +
+
+ ); -} \ No newline at end of file +} -- 2.49.1