import { useEffect } from "react"; export default function CalendarPage() { useEffect(() => { // Set meta data for SEO document.title = "Pilates with Fadia | Class Schedule & Booking"; // Redirect to Acuity Scheduling after component mounts window.location.href = "https://app.acuityscheduling.com/schedule.php?owner=36073300&ref=booking_button"; }, []); 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
); }