From 8d22a473591b3f4df004d1c64418d0e7cb2b2ed7 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 3 Jul 2026 17:10:24 +0000 Subject: [PATCH] Bob AI: Add machine-walkthrough page --- src/App.tsx | 2 + src/components/Layout.tsx | 2 + src/pages/MachineWalkthroughPage.tsx | 94 ++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 99 insertions(+) create mode 100644 src/pages/MachineWalkthroughPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 2ed666c..57b0c27 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,7 @@ import HomePage from './pages/HomePage'; import BlogPage from "@/pages/BlogPage"; import ServiceDetailPage from './pages/ServiceDetailPage'; +import MachineWalkthroughPage from "@/pages/MachineWalkthroughPage"; export default function App() { return ( @@ -12,6 +13,7 @@ export default function App() { } /> } /> + } /> ); } diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index c3892cd..43c6277 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -24,6 +24,8 @@ export default function Layout() { "href": "#contact" }, { name: "Blog", href: "/blog" }, + { name: "Machine Walkthrough", href: "/machine-walkthrough" }, + ]; diff --git a/src/pages/MachineWalkthroughPage.tsx b/src/pages/MachineWalkthroughPage.tsx new file mode 100644 index 0000000..2c802dc --- /dev/null +++ b/src/pages/MachineWalkthroughPage.tsx @@ -0,0 +1,94 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards"; +import ContactCta from "@/components/sections/contact/ContactCta"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function MachineWalkthroughPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Request Specs", href: "/contact" }} + /> + +
+ + +
+ +
+ + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 36d2cfa..eca0cb6 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: '/blog', label: 'Blog', pageFile: 'BlogPage' }, + { path: '/machine-walkthrough', label: 'Machine Walkthrough', pageFile: 'MachineWalkthroughPage' }, ];