Update src/app/page.tsx

This commit is contained in:
2026-05-10 17:33:40 +00:00
parent 3065746383
commit 39cd542e67

View File

@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
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';
@@ -236,46 +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-front-ferris-wheel_23-2147910635.jpg?_wi=2"
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">
<ContactSplitForm
title="Start Planning Your Visit Today"
description="Need group booking information or special assistance? Contact us now."
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 help you?", rows: 4 }}
textarea={{ name: "message", placeholder: "How can we assist you?", rows: 4 }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
<FooterBaseCard
logoText="SS World"
columns={[
{
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Press Center", href: "#" },
],
},
{
items: [
{ label: "FAQ", href: "#" },
{ label: "Contact", href: "#" },
title: "Support", items: [
{ label: "FAQ", href: "#faq" },
{ label: "Contact Us", href: "#contact" },
{ label: "Service Areas", href: "#" },
],
},
{
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" },
],
},
]}
copyrightText="© 2025 | SS World Family Park"
/>
</div>
</ReactLenis>