diff --git a/src/app/page.tsx b/src/app/page.tsx index df8e80c..e68ee40 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,6 @@ import TestimonialCardTwelve from '@/components/sections/testimonial/Testimonial import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterBase from '@/components/sections/footer/FooterBase'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import { Sparkles, Star } from "lucide-react"; export default function LandingPage() { return ( @@ -70,6 +69,7 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} title="Career Highlights" + description="A look at her most iconic roles and achievements." features={[ { title: "Monster's Ball", description: "Academy Award-winning performance.", imageSrc: "https://img.b2bpic.net/free-photo/film-reel-clapperboard_23-2148301777.jpg" }, { title: "X-Men", description: "Iconic role as Storm.", imageSrc: "https://img.b2bpic.net/free-photo/abstract-superhero-concept_23-2148301780.jpg" } @@ -84,6 +84,12 @@ export default function LandingPage() { gridVariant="bento-grid" title="Exclusive Collection" description="Curated items inspired by cinematic elegance." + useInvertedBackground={false} + products={[ + { id: "1", name: "Signed Poster", price: "$50", imageSrc: "https://img.b2bpic.net/free-photo/film-poster-concept_23-2148281330.jpg" }, + { id: "2", name: "Movie Script", price: "$100", imageSrc: "https://img.b2bpic.net/free-photo/vintage-notebook-desk_23-2148281335.jpg" }, + { id: "3", name: "Memorabilia", price: "$75", imageSrc: "https://img.b2bpic.net/free-photo/golden-award-trophy_23-2148281340.jpg" } + ]} /> @@ -92,6 +98,8 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" title="Subscription Access" + description="Get full access to all exclusive content." + useInvertedBackground={false} plans={[ { id: "fan", badge: "Fan", price: "$9/mo", subtitle: "Daily news updates", features: ["Exclusive content", "Behind the scenes"], buttons: [{ text: "Join" }] }, { id: "vip", badge: "VIP", price: "$29/mo", subtitle: "Premium benefits", features: ["Direct Q&A", "Early access"], buttons: [{ text: "Subscribe" }] } @@ -103,7 +111,10 @@ export default function LandingPage() {