From 98f93867bdee4a19a8e70a362becbaf5b5ba29ef Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 00:51:26 +0000 Subject: [PATCH 1/3] Bob AI: Add products page --- src/App.tsx | 2 + src/components/Layout.tsx | 4 +- src/pages/ProductsPage.tsx | 99 ++++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 105 insertions(+), 1 deletion(-) create mode 100644 src/pages/ProductsPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..c9c6d8e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import ProductsPage from "@/pages/ProductsPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 5feaddb..4cfcb68 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -35,7 +35,9 @@ export default function Layout() { { "name": "Testimonials", "href": "#testimonials" - } + }, + { name: "Products", href: "/products" }, + ]; return ( diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx new file mode 100644 index 0000000..3cc83f0 --- /dev/null +++ b/src/pages/ProductsPage.tsx @@ -0,0 +1,99 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplitMediaGrid from "@/components/sections/hero/HeroSplitMediaGrid"; +import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function ProductsPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Contact Us", href: "/contact" }} + /> + +
+ + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..93d7fae 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/products', label: 'Products', pageFile: 'ProductsPage' }, ]; -- 2.49.1 From accc9f000182c3860320db7556358549274c9c04 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 00:52:11 +0000 Subject: [PATCH 2/3] Bob AI: Populate src/pages/ProductsPage.tsx (snippet builder, 1 sections) --- src/pages/ProductsPage.tsx | 110 +++++-------------------------------- 1 file changed, 15 insertions(+), 95 deletions(-) diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx index 3cc83f0..66730b9 100644 --- a/src/pages/ProductsPage.tsx +++ b/src/pages/ProductsPage.tsx @@ -1,99 +1,19 @@ -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplitMediaGrid from "@/components/sections/hero/HeroSplitMediaGrid"; -import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import FooterSimple from "@/components/sections/footer/FooterSimple"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import { cls } from "@/lib/utils"; export default function ProductsPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Contact Us", href: "/contact" }} - /> - -
- - - -
- - -
+ <> +

Our Portfolio

+
+
+
+
+
+
+ ); -} \ No newline at end of file +} -- 2.49.1 From cea3ebcf2deb3b1a9c022013650213d1a073f818 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 00:52:50 +0000 Subject: [PATCH 3/3] Bob AI: fix build errors (attempt 1) --- src/pages/ProductsPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx index 66730b9..eb6a5be 100644 --- a/src/pages/ProductsPage.tsx +++ b/src/pages/ProductsPage.tsx @@ -7,7 +7,7 @@ import { cls } from "@/lib/utils"; export default function ProductsPage() { return ( <> -

Our Portfolio

+

Our Portfolio

@@ -16,4 +16,4 @@ export default function ProductsPage() {
); -} +} \ No newline at end of file -- 2.49.1