Replace partner names with TBA on yield page
Some checks are pending
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions
CI / Backend Lint (push) Waiting to run
CI / Backend Tests (push) Blocked by required conditions
CI / Docker Build (push) Blocked by required conditions
CI / Security Scan (push) Waiting to run
Deploy / Build & Push Images (push) Waiting to run
Deploy / Deploy to Server (push) Blocked by required conditions
Deploy / Notify (push) Blocked by required conditions
Some checks are pending
CI / Frontend Lint & Type Check (push) Waiting to run
CI / Frontend Build (push) Blocked by required conditions
CI / Backend Lint (push) Waiting to run
CI / Backend Tests (push) Blocked by required conditions
CI / Docker Build (push) Blocked by required conditions
CI / Security Scan (push) Waiting to run
Deploy / Build & Push Images (push) Waiting to run
Deploy / Deploy to Server (push) Blocked by required conditions
Deploy / Notify (push) Blocked by required conditions
This commit is contained in:
@ -325,7 +325,7 @@ export default function YieldPage() {
|
||||
</div>
|
||||
<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">
|
||||
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>
|
||||
</div>
|
||||
<div className="pt-8 border-t border-white/[0.05]">
|
||||
@ -378,23 +378,16 @@ export default function YieldPage() {
|
||||
</div>
|
||||
|
||||
<div className="mt-8 grid grid-cols-2 gap-4">
|
||||
{[
|
||||
{ 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) => (
|
||||
{[1, 2, 3, 4, 5, 6].map((_, 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">
|
||||
<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 className="mt-8 pt-8 border-t border-white/10 text-center">
|
||||
<p className="text-white/40 text-sm font-mono mb-4">
|
||||
Direct integrations with top-tier Swiss & EU brands.
|
||||
Partner announcements coming soon.
|
||||
</p>
|
||||
<Link
|
||||
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: 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: 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.' }
|
||||
].map((feat, i) => (
|
||||
<div key={i} className="bg-[#030303] p-10 hover:bg-[#080808] transition-colors group">
|
||||
|
||||
Reference in New Issue
Block a user