11 Commits

Author SHA1 Message Date
f92f3e51f4 Merge version_9 into main
Merge version_9 into main
2025-12-24 13:22:51 +00:00
476ada74d9 Merge version_8 into main
Merge version_8 into main
2025-12-24 13:10:01 +00:00
0190e9d3e0 Merge version_8 into main
Merge version_8 into main
2025-12-24 13:08:32 +00:00
55b314aaa2 Merge version_8 into main
Merge version_8 into main
2025-12-24 13:07:08 +00:00
d50e44645a Merge version_7 into main
Merge version_7 into main
2025-12-24 13:03:38 +00:00
06abe78f58 Merge version_5 into main
Merge version_5 into main
2025-12-24 12:48:47 +00:00
9be88da2b1 Merge version_5 into main
Merge version_5 into main
2025-12-24 12:47:18 +00:00
9610eb709a Merge version_5 into main
Merge version_5 into main
2025-12-24 12:45:18 +00:00
68f4a67133 Merge version_4 into main
Merge version_4 into main
2025-12-24 12:41:24 +00:00
ea228313f7 Merge version_3 into main
Merge version_3 into main
2025-12-24 12:23:44 +00:00
af56b4ac15 Merge version_2 into main
Merge version_2 into main
2025-12-24 12:13:12 +00:00
2 changed files with 7 additions and 8 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: "#metrics" }, { text: "Enter the Galaxy", href: "#community" },
{ 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: "/placeholders/placeholder1.webp", imageSrc: "/images/noise.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: "/placeholders/placeholder1.webp", imageSrc: "/images/noise.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: "/placeholders/placeholder1.webp", imageSrc: "/images/noise.webp",
imageAlt: "Star Wars fans" imageAlt: "Star Wars fans"
} }
]} ]}
@@ -96,12 +96,11 @@ 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 Message" buttonText="Send email"
onSubmit={(data) => console.log(data)} onSubmit={(data) => console.log(data)}
/> />
</div> </div>
@@ -145,4 +144,4 @@ export default function StarWarsPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }