Merge version_15 into main
Merge version_15 into main
This commit was merged in pull request #22.
This commit is contained in:
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #fafafa;
|
||||
--foreground: #000000;
|
||||
--primary-cta: #ff0000;
|
||||
--secondary-cta: #ffffff;
|
||||
--accent: #e5e5e5;
|
||||
--background-accent: #f5f5f5;
|
||||
--background: #000000;
|
||||
--card: #1b1b1b;
|
||||
--foreground: #ffffff;
|
||||
--primary-cta: #ffcc00;
|
||||
--secondary-cta: #151515;
|
||||
--accent: #303030;
|
||||
--background-accent: #303030;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
@@ -1276,4 +1276,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user