Update src/app/page.tsx

This commit is contained in:
2025-12-24 13:07:03 +00:00
parent 814a5f4dc8
commit fa104c1f0a

View File

@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
import SplitAbout from "@/components/sections/about/SplitAbout"; import SplitAbout from "@/components/sections/about/SplitAbout";
import ContactCenter from "@/components/sections/contact/ContactCenter"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial"; import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial";
import PlainBackground from "@/components/background/PlainBackground"; import PlainBackground from "@/components/background/PlainBackground";
import CircleGradientBackground from "@/components/background/CircleGradientBackground"; import CircleGradientBackground from "@/components/background/CircleGradientBackground";
@@ -111,13 +111,15 @@ export default function StarWarsPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactSplitForm
tag="Newsletter" tag="Newsletter"
title="Join the Force" title="Join the Force"
description="Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content." description="Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content."
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
inputPlaceholder="Your email address" inputPlaceholder="Your email address"
buttonText="Subscribe" buttonText="Send email"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
imageAlt="Star Wars contact"
onSubmit={(email) => console.log("Subscribed:", email)} onSubmit={(email) => console.log("Subscribed:", email)}
/> />
</div> </div>