7 Commits

Author SHA1 Message Date
f462760e7c Merge version_4 into main
Merge version_4 into main
2026-05-10 17:33:43 +00:00
39cd542e67 Update src/app/page.tsx 2026-05-10 17:33:40 +00:00
3065746383 Merge version_3 into main
Merge version_3 into main
2026-05-10 16:58:39 +00:00
363cf923a3 Update src/app/page.tsx 2026-05-10 16:58:36 +00:00
5d29250cae Merge version_3 into main
Merge version_3 into main
2026-05-10 16:58:15 +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 ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -61,7 +61,7 @@ export default function LandingPage() {
{
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"
mediaAnimation="slide-up"
avatars={[
@@ -222,7 +222,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqDouble
<FaqSplitMedia
textboxLayout="default"
useInvertedBackground={true}
faqs={[
@@ -236,54 +236,50 @@ export default function LandingPage() {
title="Frequently Asked Questions"
description="Have questions? We have the answers to make your planning stress-free."
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/happy-young-woman-with-long-blonde-hair-standing-frontris-wheel_23-2147910635.jpg?_wi=2"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"}}
tag="Get in Touch"
title="Start Planning Your Visit Today"
description="Need group booking information or special assistance? Contact us now."
buttons={[
{
text: "Contact Support", href: "#"},
<ContactSplitForm
title="Contact Our Management Team"
description="For group booking inquiries, corporate events, or partnership requests, please reach out directly."
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" },
]}
textarea={{ name: "message", placeholder: "How can we assist you?", rows: 4 }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBaseCard
logoText="SS World"
columns={[
{
title: "Company", items: [
{
label: "About Us", href: "#"},
{
label: "Careers", href: "#"},
{ label: "About Us", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Press Center", href: "#" },
],
},
{
title: "Support", items: [
{
label: "FAQ", href: "#"},
{
label: "Contact", href: "#"},
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" },
{ label: "Service Areas", href: "#" },
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" },
],
},
]}
bottomLeftText="© 2024 SS World Family Park."
bottomRightText="All rights reserved."
copyrightText="© 2025 | SS World Family Park"
/>
</div>
</ReactLenis>