Compare commits
10 Commits
version_1
...
9be88da2b1
| Author | SHA1 | Date | |
|---|---|---|---|
| 9be88da2b1 | |||
| fe3ba9977f | |||
| 9610eb709a | |||
| 86f6b3537d | |||
| 68f4a67133 | |||
| 9b73620273 | |||
| ea228313f7 | |||
| 282d3bb8ad | |||
| af56b4ac15 | |||
| 1627fcbfff |
@@ -4,13 +4,13 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
--background: #000000;;
|
||||
--card: #1b1b1b;;
|
||||
--foreground: #ffffff;;
|
||||
--primary-cta: #ff6600;;
|
||||
--secondary-cta: #151515;;
|
||||
--accent: #303030;;
|
||||
--background-accent: #303030;;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #fffef5e6;
|
||||
--primary-cta: #facc15;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
@@ -495,7 +495,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -508,5 +508,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
font-family: var(--font-inter-tight), sans-serif;
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -10,7 +10,7 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Sparkles, Zap, Users, Star } from "lucide-react";
|
||||
import { Sparkles, Zap, Users, Star, ShoppingCart } from "lucide-react";
|
||||
|
||||
export default function StarWarsPage() {
|
||||
return (
|
||||
@@ -90,30 +90,53 @@ export default function StarWarsPage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "The Mandalorian",
|
||||
price: "Series",
|
||||
description: "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.",
|
||||
price: "Free",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508648349-opwl7orx.jpg",
|
||||
imageAlt: "The Mandalorian series"
|
||||
imageAlt: "The Mandalorian series",
|
||||
icon: ShoppingCart,
|
||||
features: [
|
||||
"Emmy-winning series",
|
||||
"Din Djarin's journey",
|
||||
"Grogu companion"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Andor",
|
||||
price: "Series",
|
||||
description: "Experience the untold story of the rebellion. This gripping prequel explores the sacrifices and personal struggles that ignited the fight against tyranny.",
|
||||
price: "Free",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508649592-o7da7dj7.jpg",
|
||||
imageAlt: "Andor star wars"
|
||||
imageAlt: "Andor star wars",
|
||||
icon: ShoppingCart,
|
||||
features: [
|
||||
"Rebellion origins",
|
||||
"Political thriller",
|
||||
"Character-driven drama"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "The Acolyte",
|
||||
price: "Series",
|
||||
description: "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.",
|
||||
price: "Free",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
||||
imageAlt: "The Acolyte series"
|
||||
imageAlt: "The Acolyte series",
|
||||
icon: ShoppingCart,
|
||||
features: [
|
||||
"High Republic era",
|
||||
"Jedi mysteries",
|
||||
"Force exploration"
|
||||
]
|
||||
}
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="blur-reveal"
|
||||
gridVariant="three-columns-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
tag="Must Watch"
|
||||
showPricing="always"
|
||||
highlightBestOffer="none"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user