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 ( + + + +
+ +
+ + +
+ ); +} 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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} 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" } ]