Replace partner names with TBA on yield page
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
This commit is contained in:
@ -325,7 +325,7 @@ export default function YieldPage() {
|
|||||||
</div>
|
</div>
|
||||||
<h3 className="text-3xl text-white font-display mb-6">Monetize</h3>
|
<h3 className="text-3xl text-white font-display mb-6">Monetize</h3>
|
||||||
<p className="text-white/50 leading-relaxed text-lg font-light mb-12">
|
<p className="text-white/50 leading-relaxed text-lg font-light mb-12">
|
||||||
Traffic is routed to the highest-bidding partner for that vertical (e.g. Comparis). You earn a commission (CPA) on conversion.
|
Traffic is routed to the highest-bidding partner for that vertical. You earn a commission (CPA) on conversion.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="pt-8 border-t border-white/[0.05]">
|
<div className="pt-8 border-t border-white/[0.05]">
|
||||||
@ -378,23 +378,16 @@ export default function YieldPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-8 grid grid-cols-2 gap-4">
|
<div className="mt-8 grid grid-cols-2 gap-4">
|
||||||
{[
|
{[1, 2, 3, 4, 5, 6].map((_, i) => (
|
||||||
{ name: 'COMPARIS', initial: 'C' },
|
|
||||||
{ name: 'AXA', initial: 'A' },
|
|
||||||
{ name: 'HOMEGATE', initial: 'H' },
|
|
||||||
{ name: 'SWISS LIFE', initial: 'S' },
|
|
||||||
{ name: 'JOBS.CH', initial: 'J' },
|
|
||||||
{ name: 'SANOTAS', initial: 'S' }
|
|
||||||
].map((partner, i) => (
|
|
||||||
<div key={i} className="h-24 bg-white/[0.02] border border-white/5 flex flex-col items-center justify-center hover:bg-white/[0.05] transition-all group cursor-default">
|
<div key={i} className="h-24 bg-white/[0.02] border border-white/5 flex flex-col items-center justify-center hover:bg-white/[0.05] transition-all group cursor-default">
|
||||||
<span className="font-display text-2xl text-white/20 group-hover:text-white transition-colors">{partner.name}</span>
|
<span className="font-mono text-sm text-white/30 uppercase tracking-widest">TBA</span>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mt-8 pt-8 border-t border-white/10 text-center">
|
<div className="mt-8 pt-8 border-t border-white/10 text-center">
|
||||||
<p className="text-white/40 text-sm font-mono mb-4">
|
<p className="text-white/40 text-sm font-mono mb-4">
|
||||||
Direct integrations with top-tier Swiss & EU brands.
|
Partner announcements coming soon.
|
||||||
</p>
|
</p>
|
||||||
<Link
|
<Link
|
||||||
href="/contact"
|
href="/contact"
|
||||||
@ -420,9 +413,9 @@ export default function YieldPage() {
|
|||||||
{[
|
{[
|
||||||
{ icon: PieChart, title: 'Revenue Share', desc: 'Industry-leading 70/30 split. We only make money when you do.' },
|
{ icon: PieChart, title: 'Revenue Share', desc: 'Industry-leading 70/30 split. We only make money when you do.' },
|
||||||
{ icon: Target, title: '20+ Verticals', desc: 'Finance, Insurance, Travel, Health, B2B Services, and more.' },
|
{ icon: Target, title: '20+ Verticals', desc: 'Finance, Insurance, Travel, Health, B2B Services, and more.' },
|
||||||
{ icon: Shield, title: 'Swiss Partners', desc: 'Direct API integrations with premium Swiss & EU brands.' },
|
{ icon: Shield, title: 'Premium Partners', desc: 'Direct API integrations with leading brands (coming soon).' },
|
||||||
{ icon: BarChart3, title: 'Live Analytics', desc: 'Live dashboard showing every click, lead, and conversion.' },
|
{ icon: BarChart3, title: 'Live Analytics', desc: 'Live dashboard showing every click, lead, and conversion.' },
|
||||||
{ icon: RefreshCw, title: 'Auto-Optimization', desc: 'AI automatically routes to the highest-paying partner for each visitor.' },
|
{ icon: RefreshCw, title: 'Auto-Optimization', desc: 'AI automatically routes to the best monetization path for each visitor.' },
|
||||||
{ icon: Zap, title: 'Instant DNS', desc: 'Zero downtime. Verify ownership and start earning in < 5 minutes.' }
|
{ icon: Zap, title: 'Instant DNS', desc: 'Zero downtime. Verify ownership and start earning in < 5 minutes.' }
|
||||||
].map((feat, i) => (
|
].map((feat, i) => (
|
||||||
<div key={i} className="bg-[#030303] p-10 hover:bg-[#080808] transition-colors group">
|
<div key={i} className="bg-[#030303] p-10 hover:bg-[#080808] transition-colors group">
|
||||||
|
|||||||
Reference in New Issue
Block a user