Update src/app/page.tsx
This commit is contained in:
@@ -4,14 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||||
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
import MediaSplitTabsAbout from '@/components/sections/about/MediaSplitTabsAbout';
|
||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||||
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
import ContactCenterForm from '@/components/sections/contact/ContactCenterForm';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import ButtonElasticEffect from '@/components/button/ButtonElasticEffect/ButtonElasticEffect';
|
import { Sparkles, Zap, Users, Star, ShoppingCart } from "lucide-react";
|
||||||
import { Sparkles, Zap, Users, Star } from "lucide-react";
|
|
||||||
|
|
||||||
export default function StarWarsPage() {
|
export default function StarWarsPage() {
|
||||||
return (
|
return (
|
||||||
@@ -84,45 +83,60 @@ export default function StarWarsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="featured" data-section="featured">
|
<div id="featured" data-section="featured">
|
||||||
<TestimonialCardThirteen
|
<ProductCardOne
|
||||||
title="Featured Content"
|
title="Featured Content"
|
||||||
description="Discover the most essential Star Wars films, series, and stories that define the franchise"
|
description="Discover the most essential Star Wars films, series, and stories that define the franchise"
|
||||||
testimonials={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1",
|
||||||
name: "The Mandalorian",
|
name: "The Mandalorian",
|
||||||
handle: "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.",
|
||||||
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.",
|
price: "Free",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508648349-opwl7orx.jpg",
|
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",
|
id: "2",
|
||||||
name: "Andor",
|
name: "Andor",
|
||||||
handle: "Series",
|
description: "Experience the untold story of the rebellion. This gripping prequel explores the sacrifices and personal struggles that ignited the fight against tyranny.",
|
||||||
testimonial: "Experience the untold story of the rebellion. This gripping prequel explores the sacrifices and personal struggles that ignited the fight against tyranny.",
|
price: "Free",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766508649592-o7da7dj7.jpg",
|
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",
|
id: "3",
|
||||||
name: "The Acolyte",
|
name: "The Acolyte",
|
||||||
handle: "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.",
|
||||||
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.",
|
price: "Free",
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766502905270-5whkj6nu.jpg",
|
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"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
gridVariant="three-columns-equal-width"
|
||||||
gridVariant="three-columns-all-equal-width"
|
animationType="slide-up"
|
||||||
animationType="blur-reveal"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
tag="Must Watch"
|
tag="Must Watch"
|
||||||
carouselMode="buttons"
|
showPricing="always"
|
||||||
|
highlightBestOffer="none"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -199,9 +213,6 @@ export default function StarWarsPage() {
|
|||||||
cardTag="Fan Approved"
|
cardTag="Fan Approved"
|
||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
/>
|
/>
|
||||||
<div className="flex justify-center mt-8">
|
|
||||||
<ButtonElasticEffect text="Join to us" href="#contact" />
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
<div id="faq" data-section="faq">
|
||||||
@@ -273,13 +284,6 @@ export default function StarWarsPage() {
|
|||||||
useInvertedBackground="noInvert"
|
useInvertedBackground="noInvert"
|
||||||
buttonText="Join Community"
|
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 id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
|
|||||||
Reference in New Issue
Block a user