Update booking links to direct users to the new scheduling platform

Replaces Momoyoga booking links with Setmore links in ClassesSection, CTASection, HeroSection components, and the calendar redirect in CalendarPage.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 4e6c05fd-c3ab-4c7a-a010-ae0a45d94f12
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/8463c655-f18b-4854-a9b4-0c0833dabbc1.jpg
This commit is contained in:
JeffEmmett 2025-06-14 11:59:13 +00:00
parent c223c9424f
commit f399b58291
4 changed files with 14 additions and 10 deletions

View File

@ -57,7 +57,7 @@ export function ClassesSection() {
)}
<div className="text-center mt-12">
<a href="/calendar" className="inline-block">
<a href="https://pilateswithfadia.setmore.com" target="_blank" rel="noopener noreferrer" className="inline-block">
<button className="px-12 py-5 bg-rose text-white font-bold rounded-full hover:bg-rose-700 transition duration-300 shadow-md text-xl">Book a Class</button>
</a>
</div>

View File

@ -9,12 +9,14 @@ export function CTASection() {
</h3>
<div className="flex justify-center mb-6">
<Link
href="/calendar"
<a
href="https://pilateswithfadia.setmore.com"
target="_blank"
rel="noopener noreferrer"
className="bg-rose text-white font-bold py-4 px-10 rounded-full shadow-md hover:bg-opacity-90 transition duration-300 text-lg"
>
Book a Class
</Link>
</a>
</div>
</div>

View File

@ -17,8 +17,10 @@ export function HeroSection() {
Feel at Home in your Body
</h1>
<Link
href="/calendar"
<a
href="https://pilateswithfadia.setmore.com"
target="_blank"
rel="noopener noreferrer"
className="inline-block text-white font-bold py-6 px-20 rounded-full hover:bg-opacity-90 transition duration-300 text-xl bg-[#916398]"
style={{
boxShadow: "0 6px 10px rgba(0, 0, 0, 0.25), 0 3px 6px rgba(0, 0, 0, 0.12)",
@ -27,7 +29,7 @@ export function HeroSection() {
}}
>
Book a Class
</Link>
</a>
</div>
</div>
<div className="py-8 text-center bg-[#7ebdc5] text-[#ffffff]">

View File

@ -5,8 +5,8 @@ export default function CalendarPage() {
// 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";
// Redirect to Setmore after component mounts
window.location.href = "https://pilateswithfadia.setmore.com";
}, []);
return (
@ -20,7 +20,7 @@ export default function CalendarPage() {
please click the button below.
</p>
<a
href="https://www.momoyoga.com/pilates-with-fadia/schedule"
href="https://pilateswithfadia.setmore.com"
className="bg-teal text-white font-bold py-3 px-8 rounded-md hover:bg-teal-dark transition duration-300"
target="_blank"
rel="noopener noreferrer"