diff --git a/src/app/vip/page.tsx b/src/app/vip/page.tsx index 7e8c91a..b92eef1 100644 --- a/src/app/vip/page.tsx +++ b/src/app/vip/page.tsx @@ -6,6 +6,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import { CreditCard, User } from "lucide-react"; export default function LandingPage() { return ( @@ -26,27 +27,17 @@ export default function LandingPage() { @@ -58,17 +49,11 @@ export default function LandingPage() { description="Exclusive status for our elite players." features={[ { - title: "Monthly Cashbacks", - description: "Get up to 10% back on losses.", - buttonIcon: "CreditCard", - imageSrc: "http://img.b2bpic.net/free-photo/3d-render-hand-hold-gold-credit-card-illustration_107791-16188.jpg", - }, + title: "Monthly Cashbacks", description: "Get up to 10% back on losses.", buttonIcon: CreditCard, + imageSrc: "http://img.b2bpic.net/free-photo/3d-render-hand-hold-gold-credit-card-illustration_107791-16188.jpg"}, { - title: "Dedicated Manager", - description: "Personal account representative.", - buttonIcon: "User", - imageSrc: "http://img.b2bpic.net/free-photo/3d-render-hand-giving-gold-credit-card-palm_107791-16375.jpg", - }, + title: "Dedicated Manager", description: "Personal account representative.", buttonIcon: User, + imageSrc: "http://img.b2bpic.net/free-photo/3d-render-hand-giving-gold-credit-card-palm_107791-16375.jpg"}, ]} /> @@ -82,19 +67,9 @@ export default function LandingPage() { description="What our VIPs say." testimonials={[ { - id: "v1", - name: "Alex R.", - role: "VIP Gold", - testimonial: "The service is outstanding. Truly elite treatment.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-model-black-leather-jacket-posing-near-lamps_114579-66711.jpg", - }, + id: "v1", name: "Alex R.", role: "VIP Gold", testimonial: "The service is outstanding. Truly elite treatment.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-model-black-leather-jacket-posing-near-lamps_114579-66711.jpg"}, { - id: "v2", - name: "Jamie L.", - role: "VIP Silver", - testimonial: "Worth every deposit. The perks are real.", - imageSrc: "http://img.b2bpic.net/free-photo/sucsessful-businesswoman-studio-isolated-grey_613910-11320.jpg", - }, + id: "v2", name: "Jamie L.", role: "VIP Silver", testimonial: "Worth every deposit. The perks are real.", imageSrc: "http://img.b2bpic.net/free-photo/sucsessful-businesswoman-studio-isolated-grey_613910-11320.jpg"}, ]} /> @@ -103,13 +78,9 @@ export default function LandingPage() {