Update src/app/page.tsx

This commit is contained in:
2025-12-24 13:24:17 +00:00
parent 06dc06936b
commit 119591fcfe

View File

@@ -36,7 +36,7 @@ export default function StarWarsPage() {
{ id: "3", value: "100M+", label: "Fans Worldwide united by Force" }
]}
buttons={[
{ text: "Enter the Galaxy", href: "#community" },
{ text: "Enter the Galaxy", href: "#metrics" },
{ text: "Join Community", href: "#about" }
]}
/>
@@ -55,7 +55,7 @@ export default function StarWarsPage() {
value: "40+",
title: "Years",
description: "Of Star Wars storytelling",
imageSrc: "/images/noise.webp",
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars years"
},
{
@@ -63,7 +63,7 @@ export default function StarWarsPage() {
value: "11",
title: "Films",
description: "Complete Skywalker saga",
imageSrc: "/images/noise.webp",
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars films"
},
{
@@ -71,7 +71,7 @@ export default function StarWarsPage() {
value: "100M+",
title: "Fans",
description: "Worldwide united by Force",
imageSrc: "/images/noise.webp",
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars fans"
}
]}
@@ -96,11 +96,12 @@ export default function StarWarsPage() {
title="Join the Force"
description="Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content."
inputs={[
{ name: "name", type: "text", placeholder: "Your name", required: true },
{ name: "email", type: "email", placeholder: "Your email address", required: true }
]}
useInvertedBackground="noInvert"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
buttonText="Send email"
buttonText="Send Message"
onSubmit={(data) => console.log(data)}
/>
</div>
@@ -144,4 +145,4 @@ export default function StarWarsPage() {
</div>
</ThemeProvider>
);
}
}