Remove image gallery from main website page to streamline user experience

Removes PhotoGallery component from HomePage in `client/src/pages/home-page.tsx`.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 149ccd4a-2ccb-4219-9a7b-69a9690dd7ac
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/ba5c3402-7187-491f-87d3-cc47c7c4fd21.jpg
This commit is contained in:
JeffEmmett 2025-06-14 01:33:58 +00:00
parent f464c73cb6
commit 23e439d280
1 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@ import { HeroSection } from "@/components/home/hero-section";
import { AboutSection } from "@/components/about/about-section";
import { ClassesSection } from "@/components/classes/classes-section";
import { TestimonialsSection } from "@/components/testimonials/testimonials-section";
import { PhotoGallery } from "@/components/photo-gallery";
import { ContactSection } from "@/components/contact/contact-section";
import { CTASection } from "@/components/home/cta-section";
@ -47,7 +46,6 @@ export default function HomePage() {
<ClassesSection />
<AboutSection />
<TestimonialsSection />
<PhotoGallery />
<ContactSection />
<CTASection />
</main>