Merge version_10 into main

Merge version_10 into main
This commit was merged in pull request #14.
This commit is contained in:
2025-12-24 14:32:37 +00:00
3 changed files with 26 additions and 22 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #0a0a0a; --background: #ffffff;
--card: #1a1a1a; --card: #fafafa;
--foreground: #fffef5e6; --foreground: #000000;
--primary-cta: #facc15; --primary-cta: #ff0000;
--secondary-cta: #1a1a1a; --secondary-cta: #ffffff;
--accent: #737373; --accent: #e5e5e5;
--background-accent: #737373; --background-accent: #f5f5f5;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,7 +1,7 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroBillboardMetrics from "@/components/sections/hero/HeroBillboardMetrics"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import ParallaxAbout from "@/components/sections/about/ParallaxAbout"; import ParallaxAbout from "@/components/sections/about/ParallaxAbout";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
@@ -23,17 +23,18 @@ export default function StarWarsPage() {
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardMetrics <HeroBillboardGallery
title="STAR WARS" 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." description="Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg" mediaItems={[
imageAlt="Star Wars galaxy" {
frameStyle="card" imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
metricsLabel="Witness the scale of the Star Wars universe and its influence across generations" imageAlt: "Star Wars galaxy 1"
metrics={[ },
{ id: "1", value: "40+", label: "Years of Star Wars storytelling" }, {
{ id: "2", value: "11", label: "Films in Complete Skywalker saga" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
{ id: "3", value: "100M+", label: "Fans Worldwide united by Force" } imageAlt: "Star Wars galaxy 2"
}
]} ]}
buttons={[ buttons={[
{ text: "Enter the Galaxy", href: "#metrics" }, { text: "Enter the Galaxy", href: "#metrics" },
@@ -56,7 +57,8 @@ export default function StarWarsPage() {
title: "Years", title: "Years",
description: "Of Star Wars storytelling", description: "Of Star Wars storytelling",
imageSrc: "/placeholders/placeholder1.webp", imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars years" imageAlt: "Star Wars years",
rating: 4.8
}, },
{ {
id: "2", id: "2",
@@ -64,7 +66,8 @@ export default function StarWarsPage() {
title: "Films", title: "Films",
description: "Complete Skywalker saga", description: "Complete Skywalker saga",
imageSrc: "/placeholders/placeholder1.webp", imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars films" imageAlt: "Star Wars films",
rating: 4.9
}, },
{ {
id: "3", id: "3",
@@ -72,7 +75,8 @@ export default function StarWarsPage() {
title: "Fans", title: "Fans",
description: "Worldwide united by Force", description: "Worldwide united by Force",
imageSrc: "/placeholders/placeholder1.webp", imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars fans" imageAlt: "Star Wars fans",
rating: 4.7
} }
]} ]}
/> />