diff --git a/src/pages/ToPage.tsx b/src/pages/ToPage.tsx deleted file mode 100644 index ec279a5..0000000 --- a/src/pages/ToPage.tsx +++ /dev/null @@ -1,50 +0,0 @@ -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 ( -