Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-05-23 03:20:01 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterBase from '@/components/sections/footer/FooterBase';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
@@ -47,8 +47,7 @@ export default function LandingPage() {
logoText="LUXGAMING"
description="Explore 12 premium AAA titles through next-generation 3D glass interface. Immersive, stunning, unforgettable."
buttons={[
{
text: "Enter the Experience", href: "#titles"},
{ text: "Enter the Experience", href: "#titles" },
]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/pastel-fantasy-surreal-dream_23-2151928793.jpg", imageAlt: "Immersive glass gaming experience" },
@@ -110,7 +109,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
animationType="slide-up"
animationType="depth-3d"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
@@ -127,15 +126,18 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitText
<FaqSplitMedia
useInvertedBackground={true}
faqs={[
{ id: "q1", title: "What makes this platform unique?", content: "Our high-fidelity glassmorphism design and curated AAA library create a unique luxury gaming experience." },
{ id: "q2", title: "How are games curated?", content: "We carefully evaluate titles based on graphical fidelity, immersive storytelling, and industry prestige." },
{ id: "q3", title: "Can I showcase my own title?", content: "We are always looking for premium indie developers. Contact us for partnership opportunities." },
]}
sideTitle="Common Inquiries"
title="Common Inquiries"
textboxLayout="default"
mediaAnimation="slide-up"
faqsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/3d-futuristic-abstract-gaming-concept_23-2151121098.jpg"
/>
</div>
@@ -151,28 +153,27 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactCenter
useInvertedBackground={true}
background={{ variant: "sparkles-gradient" }}
background="sparkles-gradient"
tag="CONTACT US"
title="Ready for the Next Level?"
description="Get in touch to learn more about our premium platform offerings or partnership inquiries."
buttons={[{ text: "Contact Support", href: "#" }]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
<FooterSimple
columns={[
{ title: "Platform", items: [{ label: "About Us", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Titles", items: [{ label: "Browse", href: "#titles" }, { label: "New Arrivals", href: "#titles" }] },
{ title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "Help Center", href: "#faq" }] },
]}
logoText="LUXGAMING"
copyrightText="© 2025 LUXGAMING | Luxury Gaming Showcase"
bottomLeftText="© 2025 LUXGAMING"
bottomRightText="Luxury Gaming Showcase"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}