Initial commit - Route Commerce platform

This commit is contained in:
2026-06-01 19:40:55 +00:00
commit 53a9671461
617 changed files with 106132 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
"use client";
import Header, { Footer, LandingPageWrapper, Section } from "@/components/landing/LandingPageWrapper";
import HeroSection from "@/components/landing/HeroSection";
import FeaturesAndStats from "@/components/landing/FeaturesAndStats";
import TestimonialsAndCTA from "@/components/landing/TestimonialsAndCTA";
export default function LandingPage() {
return (
<LandingPageWrapper>
<Section id="hero">
<HeroSection />
</Section>
<Section id="features">
<FeaturesAndStats />
</Section>
<Section id="reviews">
<TestimonialsAndCTA />
</Section>
</LandingPageWrapper>
);
}