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:
parent
c223c9424f
commit
f399b58291
|
|
@ -57,7 +57,7 @@ export function ClassesSection() {
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="text-center mt-12">
|
<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>
|
<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>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -9,12 +9,14 @@ export function CTASection() {
|
||||||
</h3>
|
</h3>
|
||||||
|
|
||||||
<div className="flex justify-center mb-6">
|
<div className="flex justify-center mb-6">
|
||||||
<Link
|
<a
|
||||||
href="/calendar"
|
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"
|
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
|
Book a Class
|
||||||
</Link>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,10 @@ export function HeroSection() {
|
||||||
Feel at Home in your Body
|
Feel at Home in your Body
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
<Link
|
<a
|
||||||
href="/calendar"
|
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]"
|
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={{
|
style={{
|
||||||
boxShadow: "0 6px 10px rgba(0, 0, 0, 0.25), 0 3px 6px rgba(0, 0, 0, 0.12)",
|
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
|
Book a Class
|
||||||
</Link>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="py-8 text-center bg-[#7ebdc5] text-[#ffffff]">
|
<div className="py-8 text-center bg-[#7ebdc5] text-[#ffffff]">
|
||||||
|
|
|
||||||
|
|
@ -5,8 +5,8 @@ export default function CalendarPage() {
|
||||||
// Set meta data for SEO
|
// Set meta data for SEO
|
||||||
document.title = "Pilates with Fadia | Class Schedule & Booking";
|
document.title = "Pilates with Fadia | Class Schedule & Booking";
|
||||||
|
|
||||||
// Redirect to Momoyoga after component mounts
|
// Redirect to Setmore after component mounts
|
||||||
window.location.href = "https://www.momoyoga.com/pilates-with-fadia/schedule";
|
window.location.href = "https://pilateswithfadia.setmore.com";
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
@ -20,7 +20,7 @@ export default function CalendarPage() {
|
||||||
please click the button below.
|
please click the button below.
|
||||||
</p>
|
</p>
|
||||||
<a
|
<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"
|
className="bg-teal text-white font-bold py-3 px-8 rounded-md hover:bg-teal-dark transition duration-300"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue