import { Link } from 'react-router-dom';
// ─── Pricing data ─────────────────────────────────────────────────────────────
interface Tier {
name: string;
price: string;
period: string;
tagline: string;
features: string[];
cta: string;
highlighted: boolean;
}
const TIERS: Tier[] = [
{
name: 'Starter',
price: '29€',
period: '/mois',
tagline: 'Pour démarrer proprement.',
features: [
'1 projet',
'Domaine custom',
'White-label basique',
'Support communauté',
],
cta: 'Commencer',
highlighted: false,
},
{
name: 'Studio',
price: '99€',
period: '/mois',
tagline: 'Pour les studios actifs.',
features: [
'5 projets',
'Analytics intégrés',
'SuperOAuth Tier 3',
'White-label complet',
'Support email',
],
cta: 'Choisir Studio',
highlighted: true,
},
{
name: 'Pro',
price: '249€',
period: '/mois',
tagline: 'Pour les opérations à fort volume.',
features: [
'Projets illimités',
'API access complet',
'Support prioritaire',
'SuperOAuth Tier 3',
'SLA 99.9%',
],
cta: 'Choisir Pro',
highlighted: false,
},
];
// ─── Component ────────────────────────────────────────────────────────────────
export default function LandingPage() {
return (
{/* ── Hero ──────────────────────────────────────────────────────────── */}
{/* Badge */}
SuperOAuth Tier 3 — multi-tenant natif
{/* Headline */}
La plateforme des{' '}
studios indépendants.
{/* Sous-titre */}
Lancez votre vitrine de contenu en quelques minutes.
Auth multi-tenant, domaine custom, white-label complet —
sans compromis sur la qualité.
{/* CTAs */}
{/* Social proof minimal */}
Intégration SuperOAuth Tier 3 · Auth per-tenant · CNAME custom
{/* ── Différenciateur ───────────────────────────────────────────────── */}
{[
{
label: 'Auth multi-tenant',
desc: 'SuperOAuth Tier 3 intégré nativement. Per-tenant providers, isolation complète des données.',
},
{
label: 'White-label total',
desc: 'Logo, domaine, emails, couleurs — votre marque, pas la nôtre. CNAME custom inclus dès Starter.',
},
{
label: 'Prévisible',
desc: 'Abonnement fixe, pas de commission, pas de per-seat. Votre croissance ne nous rémunère pas.',
},
].map(({ label, desc }) => (
))}
{/* ── Pricing ───────────────────────────────────────────────────────── */}
Tarifs
Simple. Sans surprise.
Abonnement mensuel sans engagement. Pas de commission sur vos revenus.
{TIERS.map((tier) => (
))}
{/* Enterprise mention */}
Enterprise
SLA, déploiement dédié, onboarding personnalisé
Nous contacter
);
}
// ─── PricingCard ──────────────────────────────────────────────────────────────
function PricingCard({ tier }: { tier: Tier }) {
const base =
'relative flex flex-col gap-5 rounded border p-6 transition-all duration-150';
const highlighted =
tier.highlighted
? 'border-od-accent bg-od-surface shadow-accent-glow'
: 'border-od-border bg-od-surface hover:border-od-border-hi';
return (
{tier.highlighted && (
)}
{tier.highlighted && (
Populaire
)}
{/* Header */}
{tier.name}
{tier.price}
{tier.period}
{tier.tagline}
{/* Separator */}
{/* Features */}
{tier.features.map((f) => (
-
—
{f}
))}
{/* CTA */}
{tier.cta}
);
}