diff --git a/client/src/App.tsx b/client/src/App.tsx index f9e7b84..b428c02 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -11,6 +11,7 @@ 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"; import NotFound from "@/pages/not-found"; import { ProtectedRoute } from "./lib/protected-route"; import Header from "@/components/navigation/header"; @@ -26,6 +27,7 @@ function Router() { + diff --git a/client/src/components/home/cta-section.tsx b/client/src/components/home/cta-section.tsx index 814551d..add0e13 100644 --- a/client/src/components/home/cta-section.tsx +++ b/client/src/components/home/cta-section.tsx @@ -10,7 +10,7 @@ export function CTASection() {
Book a Class diff --git a/client/src/components/home/hero-section.tsx b/client/src/components/home/hero-section.tsx index bca4a1c..07e1a30 100644 --- a/client/src/components/home/hero-section.tsx +++ b/client/src/components/home/hero-section.tsx @@ -17,7 +17,7 @@ export function HeroSection() { { + // Set meta data for SEO + document.title = "Pilates with Fadia | Class Schedule & Booking"; + + // Redirect to Momoyoga after component mounts + window.location.href = "https://www.momoyoga.com/pilates-with-fadia/schedule"; + }, []); + + return ( +
+
+

+ Redirecting to Class Schedule... +

+

+ You're being redirected to our class booking system. If you are not redirected automatically, + please click the button below. +

+ + Go to Class Schedule + +
+
+ ); +} \ No newline at end of file