From cc1524fd6aa48409668bc992b17bbb936d5881f1 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 9 May 2026 06:33:01 +0000 Subject: [PATCH] Bob AI: create a page specifically for the club activities --- src/components/Layout.tsx | 21 ++++--- src/pages/ActivitiesPage.tsx | 105 +++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 3 files changed, 118 insertions(+), 9 deletions(-) create mode 100644 src/pages/ActivitiesPage.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index e27ce12..ecadd92 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -9,35 +9,39 @@ export default function Layout() { const navItems = [ { "name": "Home", - "href": "#hero" + "href": "/" + }, + { + "name": "Activities", + "href": "/activities" }, { "name": "About", - "href": "#about" + "href": "/#about" }, { "name": "Features", - "href": "#features" + "href": "/#features" }, { "name": "Membership", - "href": "#pricing" + "href": "/#pricing" }, { "name": "Team", - "href": "#team" + "href": "/#team" }, { "name": "Testimonials", - "href": "#testimonials" + "href": "/#testimonials" }, { "name": "Partners", - "href": "#social-proof" + "href": "/#social-proof" }, { "name": "Contact", - "href": "#contact" + "href": "/#contact" } ]; @@ -128,4 +132,3 @@ export default function Layout() { ); } - diff --git a/src/pages/ActivitiesPage.tsx b/src/pages/ActivitiesPage.tsx new file mode 100644 index 0000000..1cf2ff0 --- /dev/null +++ b/src/pages/ActivitiesPage.tsx @@ -0,0 +1,105 @@ +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; +import ContactCta from '@/components/sections/contact/ContactCta'; + +export default function ActivitiesPage() { + return ( + <> +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ +
+ + + +
+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..2d2fa73 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/activities', label: 'Activities', pageFile: 'ActivitiesPage' }, ];