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:
2026-06-02 15:17:29 +00:00
parent 6ec4d78404
commit 72089d7c19
4 changed files with 1513 additions and 782 deletions
+1 -18
View File
@@ -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 />;
}