feat(storefront): add stops listing pages for both brands
- Create /tuxedo/stops page showing all Tuxedo Corn pickup stops - Create /indian-river-direct/stops page showing all Indian River Direct stops - Each page features: upcoming/past stop separation, date badges, GSAP animations - Link to individual stop detail pages - Orange accent for IRD, emerald accent for Tuxedo
This commit is contained in:
@@ -1,24 +1,7 @@
|
||||
"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 LandingPageClient() {
|
||||
return (
|
||||
<LandingPageWrapper>
|
||||
<Section id="hero" aria-label="Hero section">
|
||||
<HeroSection />
|
||||
</Section>
|
||||
|
||||
<Section id="features" aria-label="Features section">
|
||||
<FeaturesAndStats />
|
||||
</Section>
|
||||
|
||||
<Section id="reviews" aria-label="Reviews and call to action section">
|
||||
<TestimonialsAndCTA />
|
||||
</Section>
|
||||
</LandingPageWrapper>
|
||||
);
|
||||
return <HeroSection />;
|
||||
}
|
||||
Reference in New Issue
Block a user