From 02942f843363574d39d1b9b10fd144f167f49d3d Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Wed, 22 Apr 2026 15:34:55 +0300 Subject: [PATCH] Bob AI: Add products page --- src/pages/ProductsPage.tsx | 27 +++++++++++++++++++++++++++ src/routes.ts | 1 + 2 files changed, 28 insertions(+) create mode 100644 src/pages/ProductsPage.tsx diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx new file mode 100644 index 0000000..59dd3cb --- /dev/null +++ b/src/pages/ProductsPage.tsx @@ -0,0 +1,27 @@ +import React from "react" +import NavbarCentered from "@/components/ui/NavbarCentered" +import { routes } from "@/routes" +import HeroCentered from "@/components/sections/HeroCentered" +import FeaturesGrid from "@/components/sections/FeaturesGrid" +import CallToAction from "@/components/sections/CallToAction" +import Section from "@/components/sections/Section" // Assuming a generic Section wrapper + +interface ProductCardProps { + imageSrc: string + title: string + description: string + price: string + linkHref: string +} + +const ProductCard: React.FC = ({ + imageSrc, + title, + description, + price, + linkHref, +}) => ( +
+