File size: 4,580 Bytes
d03bb4e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pricing – ShortForge AI</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-900 text-gray-100">
    <custom-navbar></custom-navbar>

    <main class="container mx-auto px-4 py-12">
        <section class="text-center mb-12">
            <h1 class="text-4xl font-bold mb-4">Plans & Pricing</h1>
            <p class="text-gray-300">Commencez gratuitement, passez Pro quand vous êtes prêt.</p>
        </section>

        <section class="grid md:grid-cols-3 gap-8 max-w-5xl mx-auto">
            <!-- Free -->
            <div class="bg-gray-800 rounded-xl p-6 flex flex-col">
                <h3 class="text-2xl font-bold mb-2">Free</h3>
                <p class="text-3xl font-extrabold mb-4">0 €<span class="text-lg font-normal text-gray-400">/mois</span></p>
                <ul class="space-y-2 mb-6 text-gray-300">
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>1 export par jour</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>Watermark ShortForge</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>Voix standard</li>
                    <li class="flex items-start"><i data-feather="x" class="w-4 h-4 mr-2 mt-1 text-red-400"></i>Pas d’upload perso</li>
                </ul>
                <button class="mt-auto px-4 py-2 bg-gray-700 rounded-lg hover:bg-gray-600">Current plan</button>
            </div>

            <!-- Pro -->
            <div class="bg-gradient-to-br from-purple-600 to-blue-600 rounded-xl p-6 flex flex-col border-2 border-purple-400">
                <span class="self-start px-2 py-1 bg-purple-700 text-xs rounded-full mb-2">POPULAIRE</span>
                <h3 class="text-2xl font-bold mb-2">Pro</h3>
                <p class="text-3xl font-extrabold mb-4">9 €<span class="text-lg font-normal opacity-80">/mois</span></p>
                <ul class="space-y-2 mb-6">
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-300"></i>Exports illimités</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-300"></i>Pas de watermark</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-300"></i>Voix premium</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-300"></i>Upload perso</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-300"></i>Support prioritaire</li>
                </ul>
                <button class="mt-auto px-4 py-2 bg-white text-purple-700 font-semibold rounded-lg hover:bg-gray-100">Upgrade</button>
            </div>

            <!-- Enterprise -->
            <div class="bg-gray-800 rounded-xl p-6 flex flex-col">
                <h3 class="text-2xl font-bold mb-2">Enterprise</h3>
                <p class="text-3xl font-extrabold mb-4">Sur mesure</p>
                <ul class="space-y-2 mb-6 text-gray-300">
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>Tout inclus</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>API & intégrations</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>Comptes d’équipe</li>
                    <li class="flex items-start"><i data-feather="check" class="w-4 h-4 mr-2 mt-1 text-green-400"></i>Succès client dédié</li>
                </ul>
                <button class="mt-auto px-4 py-2 bg-gray-700 rounded-lg hover:bg-gray-600">Contact sales</button>
            </div>
        </section>
    </main>

    <custom-footer></custom-footer>

    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>feather.replace();</script>
</body>
</html>