14 Commits

Author SHA1 Message Date
5ce0c8191e Update src/app/page.tsx 2026-04-23 12:03:14 +00:00
f0edd58f06 Merge version_16 into main
Merge version_16 into main
2026-04-23 11:55:54 +00:00
001de9af28 Update src/app/page.tsx 2026-04-23 11:55:51 +00:00
131a828249 Merge version_15 into main
Merge version_15 into main
2026-04-23 11:50:56 +00:00
e19cb53262 Update src/app/page.tsx 2026-04-23 11:50:53 +00:00
9da606acf5 Merge version_14 into main
Merge version_14 into main
2026-04-23 11:44:55 +00:00
68445afb1c Update src/app/page.tsx 2026-04-23 11:44:49 +00:00
ccf84dec20 Merge version_13 into main
Merge version_13 into main
2026-04-23 11:42:42 +00:00
d7e55e31b7 Update src/app/page.tsx 2026-04-23 11:42:36 +00:00
92026d7d56 Merge version_13 into main
Merge version_13 into main
2026-04-23 11:42:09 +00:00
0b931a0b18 Update src/app/page.tsx 2026-04-23 11:42:06 +00:00
a7cb173c45 Merge version_11 into main
Merge version_11 into main
2026-04-23 11:35:22 +00:00
73dc589616 Update src/app/page.tsx 2026-04-23 11:35:16 +00:00
34d8751100 Merge version_10 into main
Merge version_10 into main
2026-04-23 11:34:14 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FooterBase from '@/components/sections/footer/FooterBase';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
@@ -43,12 +43,12 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroCentered
background={{ variant: "gradient-bars" }}
title="Fair Marketplace & Autonomous TCG Ecosystem"
description="Purchase packs, unpack rare finds, and earn yields on your collection. Owners earn percentages on every transaction in our transparent, fair-play ecosystem."
title="Turn Your Collection Into a Recurring Passive Income Engine"
description="Earn recurring passive income from your collection. Our platform empowers you to purchase, trade, and build a sustainable yield-generating portfolio in a transparent ecosystem. Join thousands of collectors building sustainable portfolios today."
avatars={[
{ src: "http://img.b2bpic.net/free-photo/portrait-smiley-woman_23-2149022647.jpg", alt: "User 1" },
{ src: "http://img.b2bpic.net/free-photo/portrait-beautiful-redhead-lady_23-2148339146.jpg", alt: "User 2" },
{ src: "http://img.b2bpic.net/free-photo/joyful-young-brunette-caucasian-girl-isolated-olive-green-wall-with-copy-space_141793-118993.jpg", alt: "User 3" },
{ src: "http://img.b2bpic.net/joyful-young-brunette-caucasian-girl-isolated-olive-green-wall-with-copy-space_141793-118993.jpg", alt: "User 3" },
{ src: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg", alt: "User 4" },
{ src: "http://img.b2bpic.net/free-photo/young-man-wearing-blue-outfit-looking-happy_1298-197.jpg", alt: "User 5" }
]}
@@ -105,7 +105,7 @@ export default function LandingPage() {
useInvertedBackground={false}
plans={[
{ id: "collector", badge: "Collector", price: "Free", subtitle: "Access to buy & sell", features: ["Standard marketplace access", "Trading fees included"] },
{ id: "owner", badge: "Owner", price: "$99", subtitle: "Earn on all pack volume", features: ["5% Secondary market revenue", "Priority Unpacking", "Governance access"] }
{ id: "owner", badge: "Owner", price: "$99", subtitle: "One-time $99 to earn on all pack volume", features: ["5% Secondary market revenue", "Priority Unpacking", "Governance access"] }
]}
title="Ownership Tier"
description="Join the owner network to earn perpetual percentages on pack sales."
@@ -159,37 +159,24 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
<ContactCenter
background={{ variant: "plain" }}
useInvertedBackground={false}
tag="Contact Us"
title="Start Your Collection Today"
description="Sign up for the marketplace to access exclusive packs and owner opportunities."
imageSrc="http://img.b2bpic.net/free-photo/corporate-data-management_53876-89018.jpg"
mediaAnimation="slide-up"
description="Sign up for the marketplace to access exclusive packs and owner opportunities. We respond to all inquiries within 24 hours."
buttonText="Sign Up Now"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Marketplace", items: [
{ label: "Packs", href: "#catalog" },
{ label: "Membership", href: "#pricing" }
]
},
{
title: "Legal", items: [
{ label: "Fair Play", href: "#" },
{ label: "Support", href: "#faq" }
]
}
]}
<FooterLogoReveal
logoText="CardTrader"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}