3 Commits

Author SHA1 Message Date
363cf923a3 Update src/app/page.tsx 2026-05-10 16:58:36 +00:00
56abbaa3d9 Update src/app/page.tsx 2026-05-10 16:58:12 +00:00
5e74d56367 Merge version_2 into main
Merge version_2 into main
2026-05-10 16:55:31 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroSplit from '@/components/sections/hero/HeroSplit'; import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -61,7 +61,7 @@ export default function LandingPage() {
{ {
text: "Learn More", href: "#features"}, text: "Learn More", href: "#features"},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/happy-young-woman-with-long-blonde-hair-standing-front-ferris-wheel_23-2147910635.jpg" imageSrc="http://img.b2bpic.net/free-photo/happy-young-woman-with-long-blonde-hair-standing-front-ferris-wheel_23-2147910635.jpg?_wi=1"
imageAlt="Family enjoying SS World Park" imageAlt="Family enjoying SS World Park"
mediaAnimation="slide-up" mediaAnimation="slide-up"
avatars={[ avatars={[
@@ -222,7 +222,7 @@ export default function LandingPage() {
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqDouble <FaqSplitMedia
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
@@ -236,57 +236,49 @@ export default function LandingPage() {
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Have questions? We have the answers to make your planning stress-free." description="Have questions? We have the answers to make your planning stress-free."
faqsAnimation="slide-up" faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/happy-young-woman-with-long-blonde-hair-standing-front-ferris-wheel_23-2147910635.jpg?_wi=2"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCTA <ContactSplitForm
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"}}
tag="Get in Touch"
title="Start Planning Your Visit Today" title="Start Planning Your Visit Today"
description="Need group booking information or special assistance? Contact us now." description="Need group booking information or special assistance? Contact us now."
buttons={[ inputs={[
{ { name: "name", type: "text", placeholder: "Full Name" },
text: "Contact Support", href: "#"}, { name: "email", type: "email", placeholder: "Email Address" },
]} ]}
textarea={{ name: "message", placeholder: "How can we help you?", rows: 4 }}
useInvertedBackground={true}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterLogoEmphasis
logoText="SS World"
columns={[ columns={[
{ {
title: "Company", items: [ items: [
{ { label: "About Us", href: "#" },
label: "About Us", href: "#"}, { label: "Careers", href: "#" },
{
label: "Careers", href: "#"},
], ],
}, },
{ {
title: "Support", items: [ items: [
{ { label: "FAQ", href: "#" },
label: "FAQ", href: "#"}, { label: "Contact", href: "#" },
{
label: "Contact", href: "#"},
], ],
}, },
{ {
title: "Legal", items: [ items: [
{ { label: "Privacy Policy", href: "#" },
label: "Privacy Policy", href: "#"}, { label: "Terms of Service", href: "#" },
{
label: "Terms of Service", href: "#"},
], ],
}, },
]} ]}
bottomLeftText="© 2024 SS World Family Park."
bottomRightText="All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }