Update src/app/page.tsx

This commit is contained in:
2025-12-24 14:33:59 +00:00
parent 9689368fe7
commit 7c48b023c1

View File

@@ -1,7 +1,7 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import HeroBillboardMetrics from "@/components/sections/hero/HeroBillboardMetrics";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import ParallaxAbout from "@/components/sections/about/ParallaxAbout";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
@@ -23,23 +23,35 @@ export default function StarWarsPage() {
headingFontWeight="extrabold"
>
<div id="hero" data-section="hero">
<HeroBillboardGallery
<HeroBillboardMetrics
title="STAR WARS"
description="Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force."
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
imageAlt: "Star Wars galaxy 1"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
imageAlt: "Star Wars galaxy 2"
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
imageAlt="Star Wars galaxy"
buttons={[
{ text: "Enter the Galaxy", href: "#metrics" },
{ text: "Join Community", href: "#about" }
]}
metrics={[
{
id: "1",
value: "40+",
title: "Years",
description: "Of Star Wars storytelling"
},
{
id: "2",
value: "11",
title: "Films",
description: "Complete Skywalker saga"
},
{
id: "3",
value: "100M+",
title: "Fans",
description: "Worldwide united by Force"
}
]}
/>
</div>
@@ -149,4 +161,4 @@ export default function StarWarsPage() {
</div>
</ThemeProvider>
);
}
}