Merge version_9 into main #13

Merged
mulika-local merged 2 commits from version_9 into main 2025-12-24 13:24:22 +00:00
2 changed files with 8 additions and 7 deletions

View File

@@ -1276,4 +1276,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

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