4 Commits

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

View File

@@ -1,6 +1,12 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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";
import FooterSplit from "@/components/sections/footer/FooterSplit";
import { Phone, Mail, MapPin } from "lucide-react";
export default function StarWarsPage() { export default function StarWarsPage() {
return ( return (
@@ -17,109 +23,125 @@ export default function StarWarsPage() {
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<div className="min-h-screen flex items-center justify-center text-white"> <HeroBillboardMetrics
<div className="text-center space-y-6"> title="STAR WARS"
<h1 className="text-6xl font-extrabold">STAR WARS</h1> description="Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force."
<p className="text-xl max-w-2xl mx-auto">Join millions of fans exploring the galaxy's greatest saga. Discover exclusive content, connect with the community, and celebrate the Force.</p> imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
<div className="space-x-4"> imageAlt="Star Wars galaxy"
<a href="#community" className="inline-block px-6 py-3 bg-blue-600 rounded-full hover:bg-blue-700 transition-colors">Enter the Galaxy</a> frameStyle="card"
<a href="#about" className="inline-block px-6 py-3 border border-white rounded-full hover:bg-white hover:text-black transition-colors">Join Community</a> metricsLabel="Witness the scale of the Star Wars universe and its influence across generations"
</div> metrics={[
</div> { id: "1", value: "40+", label: "Years of Star Wars storytelling" },
</div> { id: "2", value: "11", label: "Films in Complete Skywalker saga" },
{ id: "3", value: "100M+", label: "Fans Worldwide united by Force" }
]}
buttons={[
{ text: "Enter the Galaxy", href: "#metrics" },
{ text: "Join Community", href: "#about" }
]}
/>
</div> </div>
<div id="metrics" data-section="metrics"> <div id="metrics" data-section="metrics">
<div className="py-20 px-4"> <MetricCardEleven
<div className="max-w-6xl mx-auto"> title="Our Galactic Impact"
<h2 className="text-3xl font-bold text-center mb-4">Our Galactic Impact</h2> description="Experience the epic saga spanning decades of storytelling"
<p className="text-center text-gray-600 mb-12">Witness the scale of the Star Wars universe and its influence across generations</p> textboxLayout="default"
<div className="grid grid-cols-2 md:grid-cols-4 gap-8"> useInvertedBackground="noInvert"
<div className="text-center"> animationType="slide-up"
<div className="text-4xl font-bold text-blue-600">40+</div> metrics={[
<div className="font-semibold">Years</div> {
<div className="text-sm text-gray-600">Of Star Wars storytelling</div> id: "1",
</div> value: "40+",
<div className="text-center"> title: "Years",
<div className="text-4xl font-bold text-blue-600">11</div> description: "Of Star Wars storytelling",
<div className="font-semibold">Films</div> imageSrc: "/placeholders/placeholder1.webp",
<div className="text-sm text-gray-600">Complete Skywalker saga</div> imageAlt: "Star Wars years"
</div> },
<div className="text-center"> {
<div className="text-4xl font-bold text-blue-600">100M+</div> id: "2",
<div className="font-semibold">Fans</div> value: "11",
<div className="text-sm text-gray-600">Worldwide united by Force</div> title: "Films",
</div> description: "Complete Skywalker saga",
<div className="text-center"> imageSrc: "/placeholders/placeholder1.webp",
<div className="text-4xl font-bold text-blue-600"></div> imageAlt: "Star Wars films"
<div className="font-semibold">Stories</div> },
<div className="text-sm text-gray-600">In expanding galaxy</div> {
</div> id: "3",
</div> value: "100M+",
</div> title: "Fans",
</div> description: "Worldwide united by Force",
imageSrc: "/placeholders/placeholder1.webp",
imageAlt: "Star Wars fans"
}
]}
/>
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<div className="py-20 px-4"> <ParallaxAbout
<div className="max-w-4xl mx-auto text-center"> title="Elevate Your Experience"
<p className="text-lg leading-relaxed">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.</p> 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."
</div> tag="About Us"
</div> imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
imageAlt="Star Wars background"
buttons={[
{ text: "Discover More", href: "#contact" }
]}
/>
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<div className="py-20 px-4"> <ContactSplitForm
<div className="max-w-md mx-auto text-center"> title="Join the Force"
<div className="text-sm font-medium text-blue-600 mb-2">Newsletter</div> description="Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content."
<h2 className="text-3xl font-bold mb-4">Join the Force</h2> inputs={[
<p className="text-gray-600 mb-8">Subscribe for exclusive Star Wars news, community updates, and behind-the-scenes content.</p> { name: "name", type: "text", placeholder: "Your name", required: true },
<div className="flex gap-2"> { name: "email", type: "email", placeholder: "Your email address", required: true }
<input type="email" placeholder="Your email address" className="flex-1 px-4 py-2 border border-gray-300 rounded-full focus:outline-none focus:ring-2 focus:ring-blue-600" /> ]}
<button className="px-6 py-2 bg-blue-600 text-white rounded-full hover:bg-blue-700 transition-colors">Send email</button> useInvertedBackground="noInvert"
</div> imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
</div> buttonText="Send Message"
</div> onSubmit={(data) => console.log(data)}
/>
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<div className="bg-gray-900 text-white py-12 px-4"> <FooterSplit
<div className="max-w-6xl mx-auto"> logoText="STAR WARS"
<div className="grid grid-cols-1 md:grid-cols-4 gap-8"> columns={[
<div> {
<h3 className="text-xl font-bold mb-4">STAR WARS</h3> title: "Explore",
<p className="text-gray-400">Join millions of Star Wars fans worldwide. Discover exclusive content, connect with the community, and celebrate the epic saga.</p> items: [
</div> { label: "Movies", href: "#movies" },
<div> { label: "Series", href: "#series" },
<h4 className="font-semibold mb-4">Explore</h4> { label: "Characters", href: "#characters" }
<ul className="space-y-2"> ]
<li><a href="#movies" className="text-gray-400 hover:text-white">Movies</a></li> },
<li><a href="#series" className="text-gray-400 hover:text-white">Series</a></li> {
<li><a href="#characters" className="text-gray-400 hover:text-white">Characters</a></li> title: "Community",
</ul> items: [
</div> { label: "Forums", href: "#forums" },
<div> { label: "Events", href: "#events" },
<h4 className="font-semibold mb-4">Community</h4> { label: "Merch", href: "#merch" }
<ul className="space-y-2"> ]
<li><a href="#forums" className="text-gray-400 hover:text-white">Forums</a></li> },
<li><a href="#events" className="text-gray-400 hover:text-white">Events</a></li> {
<li><a href="#merch" className="text-gray-400 hover:text-white">Merch</a></li> title: "More",
</ul> items: [
</div> { label: "About Us", href: "#about" },
<div> { label: "Blog", href: "#blog" },
<h4 className="font-semibold mb-4">More</h4> { label: "Contact", href: "#contact" }
<ul className="space-y-2"> ]
<li><a href="#about" className="text-gray-400 hover:text-white">About Us</a></li> }
<li><a href="#blog" className="text-gray-400 hover:text-white">Blog</a></li> ]}
<li><a href="#contact" className="text-gray-400 hover:text-white">Contact</a></li> title="Join millions of Star Wars fans worldwide. Discover exclusive content, connect with the community, and celebrate the epic saga."
</ul> contactItems={[
</div> { icon: Phone, text: "(914) 820-5734" },
</div> { icon: Mail, text: "contact@starwars.com" },
<div className="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> { icon: MapPin, text: "Galaxy, Universe" }
<p>© 2025 Star Wars Community. All rights reserved.</p> ]}
</div> />
</div>
</div>
</div> </div>
</ThemeProvider> </ThemeProvider>
); );