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 ( +
+ + +
+ + + + + + ), + title: " \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..0b21e92 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/to', label: 'To', pageFile: 'ToPage' }, ];