diff --git a/src/pages/ToPage.tsx b/src/pages/ToPage.tsx new file mode 100644 index 0000000..ec279a5 --- /dev/null +++ b/src/pages/ToPage.tsx @@ -0,0 +1,50 @@ +import React from "react" +import NavbarCentered from "@/components/ui/NavbarCentered" +import { routes } from "@/routes" + +// Assuming these section components exist in src/components/sections/ +// You might need to adjust the imports based on your actual file structure and component names +import HeroProductShowcase from "@/components/sections/HeroProductShowcase" +import ProductFeatures from "@/components/sections/ProductFeatures" +import ProductGrid from "@/components/sections/ProductGrid" +import CallToAction from "@/components/sections/CallToAction" +import TestimonialCarousel from "@/components/sections/TestimonialCarousel" + +const ToPage: React.FC = () => { + const navItems = routes.map((r) => ({ name: r.label, href: r.path })) + + return ( +