Add src/app/faq/page.tsx
This commit is contained in:
142
src/app/faq/page.tsx
Normal file
142
src/app/faq/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="smallMedium"
|
||||
sizing="medium"
|
||||
background="noise"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ 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"
|
||||
bottomLeftText="Worldwide Movement"
|
||||
bottomRightText="hello@globaljumpday.com"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about Global Jump Day. From event details to participation guidelines, we have answers to help you jump with confidence."
|
||||
tag="Help Center"
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-shore-ocean-sunset-man-jumps-against-backdrop-setting-sun_1321-1027.jpg"
|
||||
imageAlt="People jumping together in celebration"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "When is Global Jump Day?", content: "Global Jump Day takes place on July 15th, 2024, at 3:00 PM UTC. This synchronized moment allows people worldwide to jump together at the exact same time, creating a unified global moment."
|
||||
},
|
||||
{
|
||||
id: "2", title: "How do I participate?", content: "Participating is simple! Register on our website, gather your community (friends, family, colleagues), and jump at the designated time. Share your photos and videos on social media using #GlobalJumpDay. Whether you jump solo or with a group, you're part of the movement."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Is there an age limit?", content: "No age limits! Global Jump Day welcomes everyone from young children to seniors. We encourage adapting your jump to your comfort level and physical abilities. It's about participation and celebration, not competition."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What's the purpose of Global Jump Day?", content: "Global Jump Day celebrates human unity, joy, and collective action. It brings people together across cultures, continents, and communities. Proceeds from the event support global wellness initiatives and community-building programs worldwide."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Can I participate virtually?", content: "Absolutely! Whether you jump in-person at a local event or join virtually from home, you're part of the movement. Participate however works best for you. Simply share your jump online using our official hashtag and event materials."
|
||||
},
|
||||
{
|
||||
id: "6", title: "How do I organize a local event?", content: "We love local organizers! Contact our team at hello@globaljumpday.com to become an event organizer. We provide resources, promotional materials, and support to help you lead the movement in your community."
|
||||
},
|
||||
{
|
||||
id: "7", title: "Are there sponsorship opportunities?", content: "Yes! We welcome corporate and community sponsors. Partner with us to amplify the message of unity and joy. Contact our partnerships team at hello@globaljumpday.com to discuss sponsorship packages and opportunities."
|
||||
},
|
||||
{
|
||||
id: "8", title: "How many people are expected to participate?", content: "We're targeting over 5 million participants across 150+ countries. In previous years, we've seen incredible participation from diverse communities worldwide. Your involvement helps us reach even more people!"
|
||||
},
|
||||
{
|
||||
id: "9", title: "What should I wear?", content: "Wear whatever makes you comfortable and happy! Many people choose bright colors, their country's flag colors, or special outfits. The most important thing is that you feel good and ready to celebrate."
|
||||
},
|
||||
{
|
||||
id: "10", title: "How can I stay updated?", content: "Subscribe to our newsletter on the homepage, follow us on social media, or check back on our website regularly. We'll send you event updates, participate tips, and exclusive content as Global Jump Day approaches."
|
||||
},
|
||||
{
|
||||
id: "11", title: "Is Global Jump Day accessible?", content: "We're committed to making Global Jump Day accessible to everyone. Whether you have mobility challenges, hearing or vision impairments, or other needs, we encourage you to participate in whatever way works for you."
|
||||
},
|
||||
{
|
||||
id: "12", title: "Where can I find more information?", content: "Visit our website for complete details about events, registration, and participation guidelines. You can also email us at hello@globaljumpday.com or follow our social media channels for daily updates and inspiring stories from our community."
|
||||
}
|
||||
]}
|
||||
buttons={[{ text: "Ready to Jump?", href: "/get-involved" }]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/people-shore-ocean-sunset-man-jumps-against-backdrop-setting-sun_1321-1027.jpg"
|
||||
imageAlt="Silhouettes of people jumping at sunset"
|
||||
logoText="Global Jump Day"
|
||||
copyrightText="© 2024 Global Jump Day | Celebrating Movement, Unity & Joy"
|
||||
columns={[
|
||||
{
|
||||
title: "Movement", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Our Mission", href: "/" },
|
||||
{ label: "Global Impact", href: "/" },
|
||||
{ label: "Community Stories", href: "/" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Get Involved", items: [
|
||||
{ label: "Register Now", href: "/get-involved" },
|
||||
{ label: "Become an Organizer", href: "/get-involved" },
|
||||
{ label: "Sponsorships", href: "/get-involved" },
|
||||
{ label: "Partner With Us", href: "/get-involved" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Email Us", href: "mailto:hello@globaljumpday.com" },
|
||||
{ label: "Social Media", href: "#" },
|
||||
{ label: "Newsletter", href: "/" },
|
||||
{ label: "FAQ", href: "/faq" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
{ label: "Accessibility", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user