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, +}) => ( +
+