4 Commits

Author SHA1 Message Date
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

View File

@@ -1,6 +1,17 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import ButtonElasticEffect from '@/components/button/ButtonElasticEffect/ButtonElasticEffect';
import { Sparkles, Zap, Users, Star } from "lucide-react";
export default function StarWarsPage() { export default function StarWarsPage() {
return ( return (
@@ -16,88 +27,289 @@ export default function StarWarsPage() {
secondaryButtonStyle="glass" secondaryButtonStyle="glass"
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<div className="min-h-screen flex flex-col items-center justify-center p-8"> <div id="nav" data-section="nav">
<div className="max-w-4xl mx-auto text-center space-y-8"> <NavbarStyleApple
<h1 className="text-6xl font-extrabold text-gradient bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-600"> brandName="STAR WARS"
STAR WARS navItems={[
</h1> { name: "Home", id: "hero" },
<p className="text-xl text-gray-600 max-w-2xl mx-auto leading-relaxed"> { name: "About", id: "about" },
Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force. { name: "Featured", id: "featured" },
</p> { name: "Community", id: "testimonials" },
<div className="flex gap-4 justify-center flex-wrap"> { name: "Contact", id: "contact" }
<button className="px-8 py-3 bg-gradient-to-r from-blue-500 to-purple-600 text-white rounded-full font-semibold hover:shadow-lg transform hover:scale-105 transition-all duration-300"> ]}
Enter the Galaxy />
</button> </div>
<button className="px-8 py-3 bg-white/10 backdrop-blur-sm border border-white/20 text-gray-700 rounded-full font-semibold hover:bg-white/20 transition-all duration-300">
Join Community <div id="hero" data-section="hero">
</button> <HeroLogoBillboardSplit
</div> logoText="STAR WARS"
description="Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force."
buttons={[
{ text: "Enter the Galaxy", href: "#featured" },
{ text: "Join Community", href: "#contact" }
]}
layoutOrder="default"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
imageAlt="Star Wars galaxy scene"
frameStyle="browser"
/>
</div>
<div id="about" data-section="about">
<MediaSplitTabsAbout
title="The Star Wars Universe"
description="Explore decades of epic storytelling across galaxies and timelines"
tabs={[
{
id: "saga",
label: "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. Nine films spanning generations of heroes and villains."
},
{
id: "expanded",
label: "Expanded Universe",
description: "Venture into incredible stories beyond the main saga. Explore the Old Republic, the High Republic era, and countless tales of Jedi, Sith, and everything in between."
},
{
id: "characters",
label: "Iconic Characters",
description: "Meet legendary heroes like Luke Skywalker, Princess Leia, Han Solo, and Darth Vader. Discover complex characters that define the Star Wars legacy and shape the destiny of galaxies."
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508646892-drupy2w9.jpg"
imageAlt="Star Wars universe"
imagePosition="right"
useInvertedBackground="noInvert"
/>
</div>
<div id="featured" data-section="featured">
<TestimonialCardThirteen
title="Featured Content"
description="Discover the most essential Star Wars films, series, and stories that define the franchise"
testimonials={[
{
id: "1",
name: "The Mandalorian",
handle: "Series",
testimonial: "Follow Din Djarin as he navigates the outer reaches of the galaxy. With an unexpected companion by his side, he explores the far reaches of a galaxy shrouded in mystery and danger.",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508648349-opwl7orx.jpg",
imageAlt: "The Mandalorian series"
},
{
id: "2",
name: "Andor",
handle: "Series",
testimonial: "Experience the untold story of the rebellion. This gripping prequel explores the sacrifices and personal struggles that ignited the fight against tyranny.",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508649592-o7da7dj7.jpg",
imageAlt: "Andor star wars"
},
{
id: "3",
name: "The Acolyte",
handle: "Series",
testimonial: "Step into the High Republic era and uncover the mysteries of the Force. Witness how the Jedi's certainty begins to crack in this thrilling new saga.",
rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
imageAlt: "The Acolyte series"
}
]}
showRating={true}
gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground="noInvert"
tag="Must Watch"
carouselMode="buttons"
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardOne
metrics={[
{
id: "1",
value: "40+",
title: "Years",
description: "Of Star Wars storytelling and legacy",
icon: Sparkles
},
{
id: "2",
value: "11",
title: "Main Films",
description: "Spanning the complete Skywalker saga",
icon: Zap
},
{
id: "3",
value: "100M+",
title: "Fans",
description: "Worldwide united by the Force",
icon: Users
},
{
id: "4",
value: "∞",
title: "Stories",
description: "In an ever-expanding galaxy far away",
icon: Star
}
]}
gridVariant="four-items-2x2-equal-grid"
animationType="scale-rotate"
title="By the Numbers"
description="The impact of Star Wars across generations"
textboxLayout="default"
useInvertedBackground="noInvert"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Sarah",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508650951-kaj1cbih.jpg",
imageAlt: "Sarah"
},
{
id: "2",
name: "Marcus",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508651819-t3cnqjfz.jpg",
imageAlt: "Marcus"
},
{
id: "3",
name: "Elena",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508652759-z5co4qlg.jpg",
imageAlt: "Elena"
},
{
id: "4",
name: "Alex",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508653705-qp2xy5s6.jpg",
imageAlt: "Alex"
}
]}
cardTitle="Millions of fans across the galaxy trust this community for Star Wars knowledge and connection"
cardTag="Fan Approved"
useInvertedBackground="noInvert"
/>
<div className="flex justify-center mt-8">
<ButtonElasticEffect text="Join to us" href="#contact" />
</div> </div>
</div>
<div className="mt-16 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 max-w-6xl mx-auto">
<div className="text-center p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> <div id="faq" data-section="faq">
<div className="text-3xl font-bold text-blue-500">40+</div> <FaqDouble
<div className="text-lg font-semibold mt-2">Years</div> title="Frequently Asked Questions"
<div className="text-sm text-gray-600 mt-1">Of Star Wars storytelling</div> description="Everything you need to know about the Star Wars universe and this community"
</div> faqs={[
<div className="text-center p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> {
<div className="text-3xl font-bold text-purple-500">11</div> id: "1",
<div className="text-lg font-semibold mt-2">Main Films</div> title: "What is the best order to watch Star Wars?",
<div className="text-sm text-gray-600 mt-1">Complete Skywalker saga</div> content: "Start with Episode IV (A New Hope), then V and VI. For a complete experience, watch Episodes I-III before the original trilogy, or watch in release order. For newer content, add Episodes VII-IX afterward."
</div> },
<div className="text-center p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> {
<div className="text-3xl font-bold text-blue-500">100M+</div> id: "2",
<div className="text-lg font-semibold mt-2">Fans</div> title: "Who are the main characters in Star Wars?",
<div className="text-sm text-gray-600 mt-1">Worldwide united by Force</div> content: "The saga centers on the Skywalker family. Luke Skywalker, his sister Leia, their father Anakin/Darth Vader, and their descendants define the core story. Other key characters include Han Solo, Yoda, and Palpatine."
</div> },
<div className="text-center p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> {
<div className="text-3xl font-bold text-purple-500"></div> id: "3",
<div className="text-lg font-semibold mt-2">Stories</div> title: "What is the Force?",
<div className="text-sm text-gray-600 mt-1">In expanding galaxy</div> content: "The Force is a mystical energy field that connects all living things in the Star Wars universe. Those trained to use it become Jedi (light side) or Sith (dark side), giving them incredible powers."
</div> },
</div> {
id: "4",
<div className="mt-16 max-w-4xl mx-auto"> title: "Where can I watch all Star Wars content?",
<h2 className="text-3xl font-bold text-center mb-8">About the Universe</h2> content: "Star Wars films and series are primarily available on Disney+. This includes all nine main saga films, the anthology films, and the original and new series."
<div className="grid grid-cols-1 md:grid-cols-3 gap-6"> },
<div className="p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> {
<h3 className="text-xl font-semibold mb-3">The Saga</h3> id: "5",
<p className="text-gray-600 text-sm leading-relaxed"> title: "How many Star Wars movies are there?",
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. content: "The main saga consists of 9 films divided into three trilogies. Additionally, there are two anthology films (Rogue One and Solo), making 11 theatrical films total."
</p> },
</div> {
<div className="p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> id: "6",
<h3 className="text-xl font-semibold mb-3">Expanded Universe</h3> title: "What is the Star Wars Expanded Universe?",
<p className="text-gray-600 text-sm leading-relaxed"> content: "The Expanded Universe (now called Legends) contains hundreds of books, comics, and games set in the Star Wars universe. Many stories explore periods before and after the main saga."
Venture into incredible stories beyond the main saga. Explore the Old Republic, High Republic era, and countless tales of heroes and villains. }
</p> ]}
</div> textboxLayout="default"
<div className="p-6 bg-white/5 backdrop-blur-sm rounded-xl border border-white/10"> useInvertedBackground="noInvert"
<h3 className="text-xl font-semibold mb-3">Iconic Characters</h3> animationType="smooth"
<p className="text-gray-600 text-sm leading-relaxed"> />
Meet legendary heroes like Luke Skywalker, Princess Leia, Han Solo, and Darth Vader who define the Star Wars legacy. </div>
</p>
</div> <div id="contact" data-section="contact">
</div> <ContactCenterForm
</div> title="Join the Force"
description="Subscribe to our newsletter for exclusive Star Wars news, community updates, and behind-the-scenes content delivered straight to your inbox."
<div className="mt-16 max-w-2xl mx-auto text-center"> inputs={[
<h2 className="text-3xl font-bold mb-4">Join the Force</h2> {
<p className="text-gray-600 mb-8"> name: "name",
Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content. type: "text",
</p> placeholder: "Your Name",
<div className="flex flex-col sm:flex-row gap-4 max-w-md mx-auto"> required: true
<input },
type="email" {
placeholder="Your email" name: "email",
className="flex-1 px-4 py-3 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 bg-white/80 backdrop-blur-sm" type: "email",
/> placeholder: "Your Email",
<button className="px-6 py-3 bg-gradient-to-r from-blue-500 to-purple-600 text-white rounded-full font-semibold hover:shadow-lg transform hover:scale-105 transition-all duration-300"> required: true
Subscribe }
</button> ]}
</div> textarea={{
name: "message",
placeholder: "Tell us what Star Wars means to you...",
rows: 4,
required: false
}}
useInvertedBackground="noInvert"
buttonText="Join Community"
/>
<div className="flex justify-center mt-12">
<img
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
alt="Star Wars galaxy scene"
className="w-full max-w-2xl rounded-lg shadow-lg"
/>
</div> </div>
</div> </div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="STAR WARS"
columns={[
{
items: [
{ label: "Home", href: "hero" },
{ label: "About Universe", href: "about" },
{ label: "Featured", href: "featured" }
]
},
{
items: [
{ label: "Community", href: "testimonials" },
{ label: "FAQ", href: "faq" },
{ label: "Contact", href: "contact" }
]
},
{
items: [
{ label: "Privacy", href: "#" },
{ label: "Terms", href: "#" },
{ label: "Sitemap", href: "#" }
]
}
]}
/>
</div>
</ThemeProvider> </ThemeProvider>
); );
} }