23 Commits

Author SHA1 Message Date
1070bf740e Merge version_10 into main
Merge version_10 into main
2025-12-24 14:32:37 +00:00
5881a07395 Update src/app/page.tsx 2025-12-24 14:32:32 +00:00
09b2c3a2bc Update src/app/layout.tsx 2025-12-24 14:32:31 +00:00
39df172d16 Update src/app/globals.css 2025-12-24 14:32:30 +00:00
556648f05e Merge version_9 into main
Merge version_9 into main
2025-12-24 13:24:21 +00:00
119591fcfe Update src/app/page.tsx 2025-12-24 13:24:17 +00:00
06dc06936b Update src/app/layout.tsx 2025-12-24 13:24:16 +00:00
f92f3e51f4 Merge version_9 into main
Merge version_9 into main
2025-12-24 13:22:51 +00:00
a2f9422712 Update src/app/page.tsx 2025-12-24 13:22:46 +00:00
c2a6462166 Update src/app/layout.tsx 2025-12-24 13:22:45 +00:00
476ada74d9 Merge version_8 into main
Merge version_8 into main
2025-12-24 13:10:01 +00:00
66098b02e2 Update src/app/page.tsx 2025-12-24 13:09:56 +00:00
0190e9d3e0 Merge version_8 into main
Merge version_8 into main
2025-12-24 13:08:32 +00:00
16303d418a Update src/app/page.tsx 2025-12-24 13:08:28 +00:00
55b314aaa2 Merge version_8 into main
Merge version_8 into main
2025-12-24 13:07:08 +00:00
fa104c1f0a Update src/app/page.tsx 2025-12-24 13:07:03 +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
3 changed files with 64 additions and 77 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

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

View File

@@ -1,14 +1,12 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne"; import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
import SplitAbout from "@/components/sections/about/SplitAbout"; import ParallaxAbout from "@/components/sections/about/ParallaxAbout";
import ContactCenter from "@/components/sections/contact/ContactCenter"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBaseSocial from "@/components/sections/footer/FooterBaseSocial"; import FooterSplit from "@/components/sections/footer/FooterSplit";
import PlainBackground from "@/components/background/PlainBackground"; import { Phone, Mail, MapPin } from "lucide-react";
import CircleGradientBackground from "@/components/background/CircleGradientBackground";
import { TrendingUp, Users, Zap, Star, Twitter, Linkedin, Globe } from "lucide-react";
export default function StarWarsPage() { export default function StarWarsPage() {
return ( return (
@@ -24,108 +22,97 @@ export default function StarWarsPage() {
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<PlainBackground />
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <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."
tag="Welcome to the Galaxy" mediaItems={[
buttons={[ {
{ text: "Enter the Galaxy", href: "community" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
{ text: "Join Community", href: "about" } 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"
}
]}
buttons={[
{ text: "Enter the Galaxy", href: "#metrics" },
{ text: "Join Community", href: "#about" }
]} ]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
imageAlt="Star Wars galaxy"
frameStyle="card"
/> />
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<MetricCardOne <MetricCardEleven
title="Our Galactic Impact" title="Our Galactic Impact"
description="Witness the scale of the Star Wars universe and its influence across generations" description="Experience the epic saga spanning decades of storytelling"
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
animationType="slide-up"
metrics={[ metrics={[
{ {
id: "1", id: "1",
value: "40+", value: "40+",
title: "Years", title: "Years",
description: "Of Star Wars storytelling", description: "Of Star Wars storytelling",
icon: TrendingUp imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars years",
rating: 4.8
}, },
{ {
id: "2", id: "2",
value: "11", value: "11",
title: "Films", title: "Films",
description: "Complete Skywalker saga", description: "Complete Skywalker saga",
icon: Star imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars films",
rating: 4.9
}, },
{ {
id: "3", id: "3",
value: "100M+", value: "100M+",
title: "Fans", title: "Fans",
description: "Worldwide united by Force", description: "Worldwide united by Force",
icon: Users imageSrc: "/placeholders/placeholder1.webp",
}, imageAlt: "Star Wars fans",
{ rating: 4.7
id: "4",
value: "∞",
title: "Stories",
description: "In expanding galaxy",
icon: Zap
} }
]} ]}
/> />
</div> </div>
<CircleGradientBackground diagonal="primary" />
<div id="about" data-section="about"> <div id="about" data-section="about">
<SplitAbout <ParallaxAbout
title="About the Universe" title="Elevate Your Experience"
description="Experience the epic saga spanning decades of storytelling across multiple eras and universes" description="Experience the epic saga spanning decades of storytelling across multiple eras and universes. From Episode I through IX, experience the story of the Skywalker family and the eternal battle between light and dark sides of the Force."
textboxLayout="default" tag="About Us"
useInvertedBackground="noInvert"
imagePosition="right"
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"
imageAlt="Star Wars universe" imageAlt="Star Wars background"
bulletPoints={[ buttons={[
{ { text: "Discover More", href: "#contact" }
title: "The Saga",
description: "From Episode I through IX, experience the epic story of the Skywalker family and the eternal battle between light and dark sides of the Force."
},
{
title: "Expanded Universe",
description: "Venture into incredible stories beyond the main saga. Explore the Old Republic, High Republic era, and countless tales of heroes and villains."
},
{
title: "Iconic Characters",
description: "Meet legendary heroes like Luke Skywalker, Princess Leia, Han Solo, and Darth Vader who define the Star Wars legacy."
}
]} ]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactSplitForm
tag="Newsletter"
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={[
{ name: "name", type: "text", placeholder: "Your name", required: true },
{ name: "email", type: "email", placeholder: "Your email address", required: true }
]}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
inputPlaceholder="Your email address" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
buttonText="Subscribe" buttonText="Send Message"
onSubmit={(email) => console.log("Subscribed:", email)} onSubmit={(data) => console.log(data)}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseSocial <FooterSplit
logoText="STAR WARS" logoText="STAR WARS"
description="Join millions of Star Wars fans worldwide. Discover exclusive content, connect with the community, and celebrate the epic saga."
columns={[ columns={[
{ {
title: "Explore", title: "Explore",
@@ -146,20 +133,20 @@ export default function StarWarsPage() {
{ {
title: "More", title: "More",
items: [ items: [
{ label: "About Us", href: "about" }, { label: "About Us", href: "#about" },
{ label: "Blog", href: "#blog" }, { label: "Blog", href: "#blog" },
{ label: "Contact", href: "contact" } { label: "Contact", href: "#contact" }
] ]
} }
]} ]}
socialLinks={[ title="Join millions of Star Wars fans worldwide. Discover exclusive content, connect with the community, and celebrate the epic saga."
{ icon: Twitter, href: "https://twitter.com", ariaLabel: "Twitter" }, contactItems={[
{ icon: Linkedin, href: "https://linkedin.com", ariaLabel: "LinkedIn" }, { icon: Phone, text: "(914) 820-5734" },
{ icon: Globe, href: "https://example.com", ariaLabel: "Website" } { icon: Mail, text: "contact@starwars.com" },
{ icon: MapPin, text: "Galaxy, Universe" }
]} ]}
copyrightText="© 2025 Star Wars Community. All rights reserved."
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }