Files
848d2de1-1e7c-4445-96c5-31b…/src/pages/activities/SailingSchoolPage.tsx

65 lines
2.8 KiB
TypeScript

import HeroSplit from '@/components/sections/hero/HeroSplit';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import ContactCta from '@/components/sections/contact/ContactCta';
import FeaturesMinimalCards from '@/components/sections/features/FeaturesMinimalCards';
export default function SailingSchoolPage() {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroSplit
tag="Sailing School & Seminars"
title="Learn to Sail with the Best"
description="Our certified instructors offer a comprehensive curriculum for all ages and skill levels. Whether you're stepping onto a boat for the first time or looking to hone your skills, we have a program for you."
primaryButton={{
text: "View Class Schedule",
href: "#",
}}
imageSrc="http://img.b2bpic.net/free-photo/young-woman-learning-sail-boat_1303-27222.jpg?_wi=1"
/>
</SectionErrorBoundary>
</div>
<div id="school-info" data-section="school-info">
<SectionErrorBoundary name="school-info">
<FeaturesMinimalCards
tag="Program Details"
title="Courses for Every Sailor"
description="Our sailing school is dedicated to providing the highest quality instruction in a safe and fun environment."
items={[
{
title: "Youth Sailing",
description: "Our summer youth sailing program is a great way for kids to learn the basics of sailing and develop a lifelong love for the sport.",
},
{
title: "Adult Lessons",
description: "We offer a range of adult lessons, from introductory courses to advanced racing clinics. Private lessons are also available.",
},
{
title: "Certifications",
description: "Earn US Sailing certifications through our accredited courses, allowing you to charter boats around the world.",
},
{
title: "Seminars",
description: "Throughout the year, we host seminars on a variety of topics, including navigation, boat maintenance, and racing tactics.",
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get Involved"
text="Ready to start your sailing journey? Contact our sailing director for more information."
primaryButton={{
text: "Contact Sailing Director",
href: "mailto:sailingdirector@missionbeachyachtclub.com",
}}
/>
</SectionErrorBoundary>
</div>
</>
);
}