Compare commits
11 Commits
version_6_
...
version_8_
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ee5f32b54 | |||
| 6fa648acb0 | |||
| 605f3c8a4b | |||
| a959fe5887 | |||
|
|
36bbfcbb8c | ||
| b626800609 | |||
| 86a16dce02 | |||
| 5b33739c92 | |||
| 003be6933d | |||
|
|
c7b2f2c881 | ||
| 233871f91c |
@@ -37,25 +37,29 @@ export default function ActivitiesPage() {
|
||||
tag: "Racing",
|
||||
title: "Weekly Regattas",
|
||||
description: "Test your skills and compete against fellow sailors in our exhilarating weekly regattas. All classes are welcome.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sailing-yacht-race-yachting-sailing-regatta_654080-1676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sailing-yacht-race-yachting-sailing-regatta_654080-1676.jpg?_wi=1",
|
||||
primaryButton: { text: "Learn More", href: "/activities/weekly-regattas" },
|
||||
},
|
||||
{
|
||||
tag: "Cruising",
|
||||
title: "Leisurely Cruises",
|
||||
description: "Join our group cruises to explore the beautiful San Diego coastline, visit other clubs, and enjoy overnight trips.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-fluffy-clouds-sky-reflecting-calm-sea-with-boat-sailing_181624-2261.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-shot-fluffy-clouds-sky-reflecting-calm-sea-with-boat-sailing_181624-2261.jpg?_wi=1",
|
||||
primaryButton: { text: "Learn More", href: "/activities/leisurely-cruises" },
|
||||
},
|
||||
{
|
||||
tag: "Social",
|
||||
title: "Club Socials & Dinners",
|
||||
description: "From holiday parties to themed dinners, our social events are the perfect opportunity to relax and connect with other members.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-celebrating-together_23-2149155791.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-celebrating-together_23-2149155791.jpg?_wi=1",
|
||||
primaryButton: { text: "Learn More", href: "/activities/club-socials" },
|
||||
},
|
||||
{
|
||||
tag: "Learning",
|
||||
title: "Sailing School & Seminars",
|
||||
description: "Whether you're a novice or an experienced sailor, our certified instructors and guest speakers offer valuable lessons and insights.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-learning-sail-boat_1303-27222.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-learning-sail-boat_1303-27222.jpg?_wi=1",
|
||||
primaryButton: { text: "Learn More", href: "/activities/sailing-school" },
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -55,7 +55,7 @@ export default function HomePage() {
|
||||
"Competitive",
|
||||
"Exciting",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sailing-yacht-race-yachting-sailing-regatta_654080-1676.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sailing-yacht-race-yachting-sailing-regatta_654080-1676.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Expert Sailing Lessons",
|
||||
|
||||
14
src/pages/activities/ClubSocialsPage.tsx
Normal file
14
src/pages/activities/ClubSocialsPage.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
|
||||
export default function ClubSocialsPage() {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
tag="Social"
|
||||
title="Club Socials & Dinners"
|
||||
description="From holiday parties to themed dinners, our social events are the perfect opportunity to relax and connect with other members."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/group-friends-celebrating-together_23-2149155791.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
14
src/pages/activities/LeisurelyCruisesPage.tsx
Normal file
14
src/pages/activities/LeisurelyCruisesPage.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
|
||||
export default function LeisurelyCruisesPage() {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
tag="Cruising"
|
||||
title="Leisurely Cruises"
|
||||
description="Join our group cruises to explore the beautiful San Diego coastline, visit other clubs, and enjoy overnight trips."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-shot-fluffy-clouds-sky-reflecting-calm-sea-with-boat-sailing_181624-2261.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
14
src/pages/activities/SailingSchoolPage.tsx
Normal file
14
src/pages/activities/SailingSchoolPage.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
|
||||
export default function SailingSchoolPage() {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
tag="Learning"
|
||||
title="Sailing School & Seminars"
|
||||
description="Whether you're a novice or an experienced sailor, our certified instructors and guest speakers offer valuable lessons and insights."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-woman-learning-sail-boat_1303-27222.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
14
src/pages/activities/WeeklyRegattasPage.tsx
Normal file
14
src/pages/activities/WeeklyRegattasPage.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import HeroSplit from '@/components/sections/hero/HeroSplit';
|
||||
|
||||
export default function WeeklyRegattasPage() {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
tag="Racing"
|
||||
title="Weekly Regattas"
|
||||
description="Test your skills and compete against fellow sailors in our exhilarating weekly regattas. All classes are welcome."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/sailing-yacht-race-yachting-sailing-regatta_654080-1676.jpg"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -7,4 +7,8 @@ export interface Route {
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/activities', label: 'Activities', pageFile: 'ActivitiesPage' },
|
||||
{ path: '/activities/weekly-regattas', label: 'Weekly Regattas', pageFile: 'activities/WeeklyRegattasPage' },
|
||||
{ path: '/activities/leisurely-cruises', label: 'Leisurely Cruises', pageFile: 'activities/LeisurelyCruisesPage' },
|
||||
{ path: '/activities/club-socials', label: 'Club Socials', pageFile: 'activities/ClubSocialsPage' },
|
||||
{ path: '/activities/sailing-school', label: 'Sailing School', pageFile: 'activities/SailingSchoolPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user