|
|
|
|
@@ -4,7 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import HeroBillboardCarouselSplit from "@/components/sections/hero/HeroBillboardCarouselSplit";
|
|
|
|
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
|
|
|
|
import ParallaxAbout from "@/components/sections/about/ParallaxAbout";
|
|
|
|
|
import ContactInline from "@/components/sections/contact/ContactInline";
|
|
|
|
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
|
|
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
|
|
|
|
import FooterSocial from "@/components/sections/footer/FooterSocial";
|
|
|
|
|
import { Youtube, Twitter, Linkedin } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
@@ -53,6 +54,60 @@ export default function StarWarsPage() {
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="products" data-section="products">
|
|
|
|
|
<ProductCardTwo
|
|
|
|
|
title="Featured Products"
|
|
|
|
|
description="Explore our premium Star Wars collection with top-rated items"
|
|
|
|
|
tag="Best Sellers"
|
|
|
|
|
products={[
|
|
|
|
|
{
|
|
|
|
|
id: "1",
|
|
|
|
|
brand: "Lucasfilm Collectibles",
|
|
|
|
|
name: "Premium Lightsaber Replica",
|
|
|
|
|
price: "$199.99",
|
|
|
|
|
rating: 5,
|
|
|
|
|
reviewCount: "2.3k",
|
|
|
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
|
|
|
|
imageAlt: "Premium Lightsaber Replica"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "2",
|
|
|
|
|
brand: "Star Wars Universe",
|
|
|
|
|
name: "Millennium Falcon Model Kit",
|
|
|
|
|
price: "$149.99",
|
|
|
|
|
rating: 4,
|
|
|
|
|
reviewCount: "1.8k",
|
|
|
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
|
|
|
|
imageAlt: "Millennium Falcon Model Kit"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "3",
|
|
|
|
|
brand: "Force Masters",
|
|
|
|
|
name: "Yoda Statue Figurine",
|
|
|
|
|
price: "$89.99",
|
|
|
|
|
rating: 5,
|
|
|
|
|
reviewCount: "3.1k",
|
|
|
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
|
|
|
|
imageAlt: "Yoda Statue Figurine"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "4",
|
|
|
|
|
brand: "Imperial Design",
|
|
|
|
|
name: "Death Star Lamp",
|
|
|
|
|
price: "$129.99",
|
|
|
|
|
rating: 4,
|
|
|
|
|
reviewCount: "956",
|
|
|
|
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
|
|
|
|
imageAlt: "Death Star Lamp"
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
gridVariant="uniform-all-items-equal"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
useInvertedBackground="noInvert"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="about" data-section="about">
|
|
|
|
|
<ParallaxAbout
|
|
|
|
|
title="Elevate Your Experience"
|
|
|
|
|
@@ -64,10 +119,23 @@ export default function StarWarsPage() {
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactInline
|
|
|
|
|
text="Join the Force"
|
|
|
|
|
inputPlaceholder="Enter your email address"
|
|
|
|
|
buttonText="Subscribe"
|
|
|
|
|
<ContactSplitForm
|
|
|
|
|
title="Get in Touch with the Force"
|
|
|
|
|
description="Subscribe to our newsletter for exclusive Star Wars content, updates, and announcements from the galaxy far, far away."
|
|
|
|
|
inputs={[
|
|
|
|
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
|
|
|
|
{ name: "email", type: "email", placeholder: "Your Email", required: true }
|
|
|
|
|
]}
|
|
|
|
|
textarea={{
|
|
|
|
|
name: "message",
|
|
|
|
|
placeholder: "Tell us about your favorite Star Wars moment...",
|
|
|
|
|
rows: 4,
|
|
|
|
|
required: true
|
|
|
|
|
}}
|
|
|
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg"
|
|
|
|
|
imageAlt="Star Wars Contact"
|
|
|
|
|
mediaPosition="right"
|
|
|
|
|
buttonText="Send Message"
|
|
|
|
|
useInvertedBackground="noInvert"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
@@ -103,4 +171,4 @@ export default function StarWarsPage() {
|
|
|
|
|
</div>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|