From eae3ddbce8a9723cba95e80ef9acb0983cb69464 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:07:41 +0000 Subject: [PATCH 1/3] Add src/app/faq/page.tsx --- src/app/faq/page.tsx | 142 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 142 insertions(+) create mode 100644 src/app/faq/page.tsx diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..8ba52cf --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,142 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { HelpCircle } from 'lucide-react'; + +export default function FaqPage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From 9789c26660d52d4497d941a34fd6c53f33fa4ed2 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:07:42 +0000 Subject: [PATCH 2/3] Add src/app/get-involved/page.tsx --- src/app/get-involved/page.tsx | 236 ++++++++++++++++++++++++++++++++++ 1 file changed, 236 insertions(+) create mode 100644 src/app/get-involved/page.tsx diff --git a/src/app/get-involved/page.tsx b/src/app/get-involved/page.tsx new file mode 100644 index 0000000..009f37f --- /dev/null +++ b/src/app/get-involved/page.tsx @@ -0,0 +1,236 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; +import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import ContactFaq from '@/components/sections/contact/ContactFaq'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { Users, Award, Megaphone, Sparkles, Heart, Zap } from 'lucide-react'; + +export default function GetInvolvedPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From 583a5cccb83e1f78d297f70deb2f2d45a2fbc22c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:07:42 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ccbe359..3cc15ca 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,8 @@ export default function LandingPage() { { name: "Why Jump", id: "features" }, { name: "Impact", id: "metrics" }, { name: "Stories", id: "testimonials" }, + { name: "FAQ", id: "/faq" }, + { name: "Get Involved", id: "/get-involved" }, { name: "Join", id: "contact" } ]} brandName="Global Jump Day" @@ -66,7 +68,7 @@ export default function LandingPage() { tagIcon={Sparkles} tagAnimation="slide-up" buttons={[ - { text: "Join the Movement", href: "#contact" }, + { text: "Join the Movement", href: "/get-involved" }, { text: "Learn More", href: "#about" } ]} buttonAnimation="slide-up" @@ -110,7 +112,7 @@ export default function LandingPage() { ] }} animationType="slide-up" - buttons={[{ text: "Register Now", href: "#contact" }]} + buttons={[{ text: "Register Now", href: "/get-involved" }]} buttonAnimation="slide-up" /> @@ -136,7 +138,7 @@ export default function LandingPage() { id: "children", value: "2M+", title: "Young Jumpers", description: "Children experiencing the joy of unity", imageSrc: "http://img.b2bpic.net/free-photo/girls-throwing-confetti_23-2147699218.jpg", imageAlt: "Children participating globally" } ]} - buttons={[{ text: "Be Part of It", href: "#contact" }]} + buttons={[{ text: "Be Part of It", href: "/get-involved" }]} buttonAnimation="slide-up" /> @@ -178,7 +180,7 @@ export default function LandingPage() { imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-working-call-center_23-2149288230.jpg" } ]} - buttons={[{ text: "Share Your Story", href: "#contact" }]} + buttons={[{ text: "Share Your Story", href: "/get-involved" }]} buttonAnimation="slide-up" /> @@ -231,8 +233,8 @@ export default function LandingPage() { }, { title: "Get Involved", items: [ - { label: "Register Now", href: "#contact" }, - { label: "Become an Organizer", href: "#contact" }, + { label: "Register Now", href: "/get-involved" }, + { label: "Become an Organizer", href: "/get-involved" }, { label: "Sponsorships", href: "#contact" }, { label: "Partner With Us", href: "#contact" } ] -- 2.49.1