Update src/app/vip/page.tsx

This commit is contained in:
2026-05-17 20:59:01 +00:00
parent 22416388d7
commit 266669c1ca

View File

@@ -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() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Lobby",
id: "/lobby",
},
name: "Lobby", id: "/lobby"},
{
name: "Wallet",
id: "/wallet",
},
name: "Wallet", id: "/wallet"},
{
name: "VIP",
id: "/vip",
},
name: "VIP", id: "/vip"},
]}
brandName="GoldTrade"
button={{
text: "Login",
href: "/login",
}}
text: "Login", href: "/login"}}
/>
</div>
@@ -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"},
]}
/>
</div>
@@ -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"},
]}
/>
</div>
@@ -103,13 +78,9 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="GoldTrade"
leftLink={{
text: "Privacy Policy",
href: "/privacy",
}}
text: "Privacy Policy", href: "/privacy"}}
rightLink={{
text: "Terms of Service",
href: "/terms",
}}
text: "Terms of Service", href: "/terms"}}
/>
</div>
</ReactLenis>