diff --git a/client/src/App.tsx b/client/src/App.tsx index b428c02..2f16f13 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -8,7 +8,7 @@ import { AuthProvider } from "@/hooks/use-auth"; import HomePage from "@/pages/home-page"; import AboutPage from "@/pages/about-page"; import ClassesPage from "@/pages/classes-page"; -import CommunityPage from "@/pages/community-page"; + import ContactPage from "@/pages/contact-page"; import AuthPage from "@/pages/auth-page"; import CalendarPage from "@/pages/calendar-page"; @@ -25,7 +25,6 @@ function Router() { - diff --git a/client/src/lib/constants.tsx b/client/src/lib/constants.tsx index f510ddb..2c1c0a0 100644 --- a/client/src/lib/constants.tsx +++ b/client/src/lib/constants.tsx @@ -130,7 +130,6 @@ export const TESTIMONIALS = [ export const NAV_LINKS = [ { name: "Book a Class", path: "/calendar" }, { name: "About Fadia", path: "/about" }, - { name: "Community", path: "/community" }, { name: "Contact", path: "/contact" }, ]; diff --git a/client/src/pages/home-page.tsx b/client/src/pages/home-page.tsx index c974c48..a763544 100644 --- a/client/src/pages/home-page.tsx +++ b/client/src/pages/home-page.tsx @@ -3,7 +3,7 @@ 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 { CommunitySection } from "@/components/community/community-section"; + import { ContactSection } from "@/components/contact/contact-section"; import { CTASection } from "@/components/home/cta-section"; import { useEffect } from "react"; @@ -46,7 +46,6 @@ export default function HomePage() { -