diff --git a/frontend/src/pages/LandingPage.tsx b/frontend/src/pages/LandingPage.tsx index 9230967..c7de10b 100644 --- a/frontend/src/pages/LandingPage.tsx +++ b/frontend/src/pages/LandingPage.tsx @@ -1,66 +1,5 @@ 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 (
@@ -72,60 +11,55 @@ export default function LandingPage() {
- SuperOAuth Tier 3 — multi-tenant natif + Vidéos · Playlists · Communauté
{/* Headline */}

- La plateforme des{' '} - studios indépendants. + Partagez vos vidéos.{' '} + Construisez votre audience.

{/* Sous-titre */}

- Lancez votre vitrine de contenu en quelques minutes. - Auth multi-tenant, domaine custom, white-label complet — - sans compromis sur la qualité. + OriginsDigital est une plateforme de partage vidéo pensée pour les créateurs. + Organisez votre contenu en playlists, proposez du contenu libre ou premium, + et faites grandir votre communauté.

{/* CTAs */}
+ Explorer les vidéos + + Se connecter - - Voir les tarifs -
- {/* Social proof minimal */} -

- Intégration SuperOAuth Tier 3 · Auth per-tenant · CNAME custom -

- - {/* ── Différenciateur ───────────────────────────────────────────────── */} -
+ {/* ── Features ──────────────────────────────────────────────────────── */} +
{[ { - label: 'Auth multi-tenant', - desc: 'SuperOAuth Tier 3 intégré nativement. Per-tenant providers, isolation complète des données.', + label: 'Playlists organisées', + desc: 'Regroupez vos vidéos par thème, série ou parcours. Vos spectateurs retrouvent facilement ce qui les intéresse.', }, { - label: 'White-label total', - desc: 'Logo, domaine, emails, couleurs — votre marque, pas la nôtre. CNAME custom inclus dès Starter.', + label: 'Contenu libre & premium', + desc: 'Proposez du contenu en accès libre pour attirer, et du contenu premium pour fidéliser. Vous décidez.', }, { - label: 'Prévisible', - desc: 'Abonnement fixe, pas de commission, pas de per-seat. Votre croissance ne nous rémunère pas.', + label: 'Fait pour les créateurs', + desc: 'Interface épurée, recherche rapide, profil personnalisé. Le contenu au centre, pas la distraction.', }, ].map(({ label, desc }) => (
- {/* ── Pricing ───────────────────────────────────────────────────────── */} -
- + {/* ── Comment ça marche ─────────────────────────────────────────────── */} +
- Tarifs + Comment ça marche

- Simple. Sans surprise. + Simple et direct.

-

- Abonnement mensuel sans engagement. Pas de commission sur vos revenus. -

-
- {TIERS.map((tier) => ( - +
+ {[ + { step: '01', title: 'Connectez-vous', desc: 'Via Discord, GitHub, Google ou Twitch. Un clic, pas de formulaire.' }, + { step: '02', title: 'Explorez', desc: 'Parcourez les vidéos libres, cherchez par thème, découvrez les playlists.' }, + { step: '03', title: 'Accédez au premium', desc: 'Débloquez les formations complètes et le contenu exclusif.' }, + ].map(({ step, title, desc }) => ( +
+ {step} +

{title}

+

{desc}

+
))}
+
- {/* Enterprise mention */} -
-
- Enterprise - SLA, déploiement dédié, onboarding personnalisé -
- +

+ Prêt à découvrir ? +

+

+ Pas besoin de compte pour explorer. Connectez-vous quand vous êtes prêt. +

+
+ - Nous contacter - + Explorer les vidéos +
-
); } - -// ─── 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} - - -
- ); -}