From 140e12c856ae7d1cbc1ecabe19d1be01212ee47f Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Thu, 23 Apr 2026 13:18:16 +0300 Subject: [PATCH] Bob AI: Populate src/pages/ProductsPage.tsx (snippet builder, 3 sections) --- src/pages/ProductsPage.tsx | 51 ++++++++++++-------------------------- 1 file changed, 16 insertions(+), 35 deletions(-) diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx index 21df1cc..9cf583f 100644 --- a/src/pages/ProductsPage.tsx +++ b/src/pages/ProductsPage.tsx @@ -1,49 +1,30 @@ -import React from "react"; import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; // Corrected import path -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import NavbarCentered from "@/components/ui/NavbarCentered"; import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import ProductRatingCards from "@/components/sections/product/ProductRatingCards"; -import ContactCta from "@/components/sections/contact/ContactCta"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -const ProductsPage: React.FC = () => { +export default function ProductsPage() { return (
({ name: r.label, href: r.path }))} - ctaButton={{ text: "Get Started", href: "/contact" }} + navItems={[{"name":"Home","href":"/"},{"name":"Products","href":"/products"},{"name":"Solutions","href":"/solutions"},{"name":"About Us","href":"/about"},{"name":"Contact","href":"/contact"}]} + ctaButton={{"text":"View Pricing","href":"/pricing"}} + /> + -
- - - - -
); -}; - -export default ProductsPage; \ No newline at end of file +}