victor HF Staff commited on
Commit
c47b981
·
verified ·
1 Parent(s): 72b4158

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +371 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Pro Landing
3
- emoji: 🐢
4
- colorFrom: blue
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: pro-landing
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: gray
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,371 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Hugging Face Pro - Unlock Advanced AI Features</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
9
+ <style>
10
+ body {
11
+ font-family: 'Inter', sans-serif;
12
+ }
13
+ .pro-gradient {
14
+ background: linear-gradient(135deg, #6EE7B7 0%, #34D399 50%, #2DD4BF 100%);
15
+ }
16
+ .card-hover {
17
+ transition: all 0.3s ease;
18
+ }
19
+ .card-hover:hover {
20
+ transform: translateY(-5px);
21
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
22
+ }
23
+ .fade-in {
24
+ animation: fadeIn 0.8s ease-in-out;
25
+ }
26
+ @keyframes fadeIn {
27
+ from { opacity: 0; transform: translateY(20px); }
28
+ to { opacity: 1; transform: translateY(0); }
29
+ }
30
+ .highlight-text {
31
+ position: relative;
32
+ display: inline-block;
33
+ }
34
+ .highlight-text:after {
35
+ content: "";
36
+ position: absolute;
37
+ bottom: 0;
38
+ left: 0;
39
+ width: 100%;
40
+ height: 30%;
41
+ background-color: rgba(52, 211, 153, 0.3);
42
+ z-index: -1;
43
+ transition: all 0.3s ease;
44
+ }
45
+ .highlight-text:hover:after {
46
+ height: 100%;
47
+ }
48
+ </style>
49
+ </head>
50
+ <body class="bg-gradient-to-br from-gray-50 to-gray-100 antialiased">
51
+ <div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 py-16">
52
+ <!-- Hero Section -->
53
+ <section class="text-center mb-24 fade-in">
54
+ <div class="inline-flex items-center justify-center space-x-4 mb-8">
55
+ <span class="inline-flex items-center px-6 py-2 text-2xl font-bold text-gray-900 bg-gradient-to-r from-green-300 via-teal-300 to-cyan-400 rounded-xl shadow-md transform rotate-1">
56
+ PRO
57
+ </span>
58
+ <span class="text-5xl font-bold text-gray-900 tracking-tight">Account</span>
59
+ </div>
60
+ <h1 class="text-4xl md:text-6xl font-bold mb-8 text-gray-900 leading-tight">
61
+ Supercharge your <span class="highlight-text">AI experience</span>
62
+ </h1>
63
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto mb-10">
64
+ Access premium features, higher quotas, and exclusive benefits to power your AI projects.
65
+ </p>
66
+ <a href="#pricing" class="inline-flex items-center justify-center space-x-2 bg-gray-900 text-white px-8 py-4 rounded-xl font-semibold hover:bg-gray-800 transition-all duration-300 text-lg shadow-lg hover:shadow-xl">
67
+ <span>Get Pro $9/month</span>
68
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
69
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd" />
70
+ </svg>
71
+ </a>
72
+ <div class="mt-12 flex justify-center">
73
+ <div class="flex -space-x-4">
74
+ <img class="w-12 h-12 border-2 border-white rounded-full" src="https://randomuser.me/api/portraits/women/44.jpg" alt="">
75
+ <img class="w-12 h-12 border-2 border-white rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="">
76
+ <img class="w-12 h-12 border-2 border-white rounded-full" src="https://randomuser.me/api/portraits/women/68.jpg" alt="">
77
+ </div>
78
+ <div class="ml-4 text-left">
79
+ <p class="text-gray-700 font-medium">Trusted by 50K+ AI developers</p>
80
+ <div class="flex items-center">
81
+ <div class="flex -ml-1 text-yellow-400">
82
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
83
+ <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
84
+ </svg>
85
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
86
+ <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
87
+ </svg>
88
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
89
+ <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
90
+ </svg>
91
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
92
+ <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
93
+ </svg>
94
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
95
+ <path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z" />
96
+ </svg>
97
+ </div>
98
+ <span class="ml-2 text-gray-600">4.9/5 from 500+ reviews</span>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </section>
103
+
104
+ <!-- Inference Section -->
105
+ <section class="mb-24 fade-in" style="animation-delay: 0.2s">
106
+ <div class="bg-white rounded-2xl shadow-lg p-10 md:p-12 card-hover">
107
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
108
+ <div class="md:pr-8">
109
+ <span class="inline-block px-4 py-1 text-sm font-semibold rounded-full bg-green-100 text-green-800 mb-4">Enhanced Access</span>
110
+ <h2 class="text-3xl font-bold mb-5 text-gray-900">Pro Tier for Inference</h2>
111
+ <p class="text-gray-600 text-lg mb-6">
112
+ Unleash the full potential of state-of-the-art AI models with priority access and extended quotas.
113
+ </p>
114
+ <div class="flex items-center space-x-4">
115
+ <div class="flex items-center justify-center w-12 h-12 rounded-xl bg-green-100 text-green-700">
116
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
117
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
118
+ </svg>
119
+ </div>
120
+ <p class="text-gray-700">
121
+ <span class="font-semibold">1,000,000 tokens</span> included every day
122
+ </p>
123
+ </div>
124
+ </div>
125
+ <div class="space-y-6">
126
+ <div>
127
+ <div class="flex justify-between items-center mb-2 text-sm font-medium text-gray-700">
128
+ <span class="flex items-center">
129
+ <span class="w-2 h-2 rounded-full bg-gray-500 mr-2"></span>
130
+ gemma-2.7-b
131
+ </span>
132
+ <span>12M tokens daily</span>
133
+ </div>
134
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
135
+ <div class="bg-gradient-to-r from-green-400 to-teal-400 h-2.5 rounded-full" style="width: 70%"></div>
136
+ </div>
137
+ </div>
138
+ <div>
139
+ <div class="flex justify-between items-center mb-2 text-sm font-medium text-gray-700">
140
+ <span class="flex items-center">
141
+ <span class="w-2 h-2 rounded-full bg-green-500 mr-2"></span>
142
+ deepseek-V3
143
+ </span>
144
+ <span>1M tokens daily</span>
145
+ </div>
146
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
147
+ <div class="bg-gradient-to-r from-blue-400 to-cyan-400 h-2.5 rounded-full" style="width: 95%"></div>
148
+ </div>
149
+ </div>
150
+ <div>
151
+ <div class="flex justify-between items-center mb-2 text-sm font-medium text-gray-700">
152
+ <span class="flex items-center">
153
+ <span class="w-2 h-2 rounded-full bg-purple-500 mr-2"></span>
154
+ llama-3-70b
155
+ </span>
156
+ <span>5M tokens daily</span>
157
+ </div>
158
+ <div class="w-full bg-gray-200 rounded-full h-2.5">
159
+ <div class="bg-gradient-to-r from-purple-400 to-pink-400 h-2.5 rounded-full" style="width: 45%"></div>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ </div>
164
+ </div>
165
+ </section>
166
+
167
+ <!-- AI App Store Section -->
168
+ <section class="mb-24 fade-in" style="animation-delay: 0.4s">
169
+ <div class="bg-white rounded-2xl shadow-lg p-10 md:p-12 card-hover">
170
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-start">
171
+ <div class="md:pr-8">
172
+ <span class="inline-block px-4 py-1 text-sm font-semibold rounded-full bg-blue-100 text-blue-800 mb-4">Exclusive Access</span>
173
+ <h2 class="text-3xl font-bold mb-5 text-gray-900">Premium AI App Store</h2>
174
+ <p class="text-gray-600 text-lg mb-6">
175
+ Get prioritized access to the most popular AI applications with ZeroGPU Spaces.
176
+ </p>
177
+ <div class="relative group">
178
+ <div class="absolute -inset-1 bg-gradient-to-r from-blue-500 to-teal-500 rounded-xl opacity-20 group-hover:opacity-40 transition duration-1000 group-hover:duration-200 blur-sm"></div>
179
+ <div class="relative bg-gray-900 text-white px-6 py-3 rounded-lg">
180
+ <div class="flex items-center space-x-2">
181
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
182
+ <path fill-rule="evenodd" d="M11.3 1.046A1 1 0 0112 2v5h4a1 1 0 01.82 1.573l-7 10A1 1 0 018 18v-5H4a1 1 0 01-.82-1.573l7-10a1 1 0 011.12-.38z" clip-rule="evenodd" />
183
+ </svg>
184
+ <span>Priority access to high-demand models</span>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ <div class="space-y-3 mt-2">
190
+ <div class="flex items-center justify-start bg-gradient-to-r from-gray-50 to-white p-4 rounded-xl border border-gray-200 text-gray-700 hover:border-blue-300 transition-all duration-300 hover:shadow-sm">
191
+ <span class="flex items-center justify-center w-8 h-8 rounded-lg bg-blue-100 text-blue-600 font-bold mr-4">7</span>
192
+ <a href="#" class="text-gray-800 hover:underline font-medium truncate">cagliostrolab/animagine-xl-3.1</a>
193
+ <span class="ml-auto px-2 py-1 text-xs font-semibold rounded-full bg-blue-50 text-blue-700">Trending</span>
194
+ </div>
195
+ <div class="flex items-center justify-start bg-gradient-to-r from-gray-50 to-white p-4 rounded-xl border border-gray-200 text-gray-700 hover:border-blue-300 transition-all duration-300 hover:shadow-sm">
196
+ <span class="flex items-center justify-center w-8 h-8 rounded-lg bg-purple-100 text-purple-600 font-bold mr-4">6</span>
197
+ <a href="#" class="text-gray-800 hover:underline font-medium truncate">API123/IllusionDiffusion</a>
198
+ <span class="ml-auto px-2 py-1 text-xs font-semibold rounded-full bg-purple-50 text-purple-700">Popular</span>
199
+ </div>
200
+ <div class="flex items-center justify-start bg-gradient-to-r from-gray-50 to-white p-4 rounded-xl border border-gray-200 text-gray-700 hover:border-blue-300 transition-all duration-300 hover:shadow-sm">
201
+ <span class="flex items-center justify-center w-8 h-8 rounded-lg bg-green-100 text-green-600 font-bold mr-4">6</span>
202
+ <a href="#" class="text-gray-800 hover:underline font-medium truncate">stabilityai/stable-diffusion-3-medium</a>
203
+ <span class="ml-auto px-2 py-1 text-xs font-semibold rounded-full bg-green-50 text-green-700">New</span>
204
+ </div>
205
+ </div>
206
+ </div>
207
+
208
+ <div class="col-span-1 md:col-span-2 grid grid-cols-1 md:grid-cols-2 gap-8 mt-12">
209
+ <div class="bg-white border border-gray-200 p-8 rounded-2xl shadow-sm hover:border-blue-300 transition-all duration-300 hover:shadow-md">
210
+ <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-blue-100 text-blue-600 mb-4">
211
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
212
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 11c0 3.517-1.009 6.799-2.753 9.571m-3.44-2.04l.054-.09A13.916 13.916 0 008 11a4 4 0 118 0c0 1.017-.07 2.019-.203 3m-2.118 6.844A21.88 21.88 0 0015.171 17m3.839 1.132c.645-2.266.99-4.659.99-7.132A8 8 0 008 4.07M3 15.364c.64-1.319 1-2.8 1-4.364 0-1.457.39-2.823 1.07-4" />
213
+ </svg>
214
+ </div>
215
+ <h3 class="text-xl font-bold mb-3 text-gray-900">Create your own ZeroGPU app</h3>
216
+ <p class="text-gray-600">
217
+ Build, deploy, and scale your AI applications effortlessly with distributed A100s. Join a vibrant community of creators and innovators.
218
+ </p>
219
+ </div>
220
+ <div class="bg-white border border-gray-200 p-8 rounded-2xl shadow-sm hover:border-blue-300 transition-all duration-300 hover:shadow-md">
221
+ <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-green-100 text-green-600 mb-4">
222
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
223
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0 3.35a1.724 1.724 0 001.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572-1.065c-.426-1.756-2.924-1.756-3.35 0a1.724 1.724 0 00-2.573 1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0 3.35a1.724 1.724 0 001.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572-1.065c-.426-1.756-2.924-1.756-3.35 0z" />
224
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 12a3 3 0 11-6 0 3 3 0 016 0z" />
225
+ </svg>
226
+ </div>
227
+ <h3 class="text-xl font-bold mb-3 text-gray-900">Access Space dev mode</h3>
228
+ <p class="text-gray-600">
229
+ Accelerate your development with persistent storage, secure access, and real-time collaboration features.
230
+ </p>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ </section>
235
+
236
+ <!-- Community Section -->
237
+ <section class="mb-24 fade-in" style="animation-delay: 0.6s">
238
+ <div class="bg-white rounded-2xl shadow-lg p-10 md:p-12 card-hover">
239
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-start">
240
+ <div class="md:pr-8">
241
+ <span class="inline-block px-4 py-1 text-sm font-semibold rounded-full bg-yellow-100 text-yellow-800 mb-4">Community</span>
242
+ <h2 class="text-3xl font-bold mb-5 text-gray-900">Share your knowledge, build your reputation</h2>
243
+ <p class="text-gray-600 text-lg mb-6">
244
+ Contribute to the Hugging Face ecosystem by sharing tutorials, research, and innovations with the community.
245
+ </p>
246
+ <div class="flex border border-gray-200 rounded-lg p-4">
247
+ <div class="flex-shrink-0 mr-4">
248
+ <img class="w-12 h-12 rounded-full" src="https://randomuser.me/api/portraits/women/12.jpg" alt="">
249
+ </div>
250
+ <div>
251
+ <h4 class="font-semibold text-gray-800">"Pro features helped me grow my audience by 300%"</h4>
252
+ <p class="text-sm text-gray-500">- AI Research Scientist at Google</p>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ <div class="space-y-5">
257
+ <div class="flex items-center mb-4">
258
+ <span class="flex items-center justify-center w-10 h-10 rounded-lg bg-yellow-100 text-yellow-600 mr-3">
259
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" viewBox="0 0 20 20" fill="currentColor">
260
+ <path fill-rule="evenodd" d="M4 4a2 2 0 012-2h8a2 2 0 012 2v12a1 1 0 110 2h-3a1 1 0 01-1-1v-2a1 1 0 00-1-1H9a1 1 0 00-1 1v2a1 1 0 01-1 1H5a1 1 0 110-2V4zm3 1h2v2H7V5zm2 4H7v2h2V9zm2-4h2v2h-2V5zm2 4h-2v2h2V9z" clip-rule="evenodd" />
261
+ </svg>
262
+ </span>
263
+ <h3 class="text-xl font-semibold text-gray-800">Featured Articles</h3>
264
+ </div>
265
+ <div class="bg-gradient-to-r from-white to-gray-50 p-5 rounded-xl border border-gray-200 hover:border-yellow-300 transition-all duration-300">
266
+ <div class="flex items-center mb-2 text-blue-600">
267
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-4 w-4 mr-1" viewBox="0 0 20 20" fill="currentColor">
268
+ <path d="M10 12a2 2 0 100-4 2 2 0 000 4z" />
269
+ <path fill-rule="evenodd" d="M.458 10C1.732 5.943 5.522 3 10 3s8.268 2.943 9.542 7c-1.274 4.057-5.064 7-9.542 7S1.732 14.057.458 10zM14 10a4 4 0 11-8 0 4 4 0 018 0z" clip-rule="evenodd" />
270
+ </svg>
271
+ <span class="text-xs font-medium">Featured</span>
272
+ </div>
273
+ <h4 class="font-semibold mb-2 text-gray-800">EU Training Data Transparency: A Proposal for a Sufficiency Framework</h4>
274
+ <p class="text-sm text-gray-500">By <a href="#" class="font-medium text-gray-700 hover:underline">yjernite</a> ・ about 19 hours ago ・ △ 2</p>
275
+ </div>
276
+ <div class="bg-gradient-to-r from-white to-gray-50 p-5 rounded-xl border border-gray-200 hover:border-yellow-300 transition-all duration-300">
277
+ <h4 class="font-semibold mb-2 text-gray-800">Fine-tuning Mistral on Your Dataset: A Comprehensive Guide</h4>
278
+ <p class="text-sm text-gray-500">By <a href="#" class="font-medium text-gray-700 hover:underline">mroggendorf1</a> ・ 1 day ago ・ △ 6</p>
279
+ </div>
280
+ <div class="bg-gradient-to-r from-white to-gray-50 p-5 rounded-xl border border-gray-200 hover:border-yellow-300 transition-all duration-300">
281
+ <h4 class="font-semibold mb-2 text-gray-800">Transformers in Production: Optimization Techniques</h4>
282
+ <p class="text-sm text-gray-500">By <a href="#" class="font-medium text-gray-700 hover:underline">Esmail-AGumaa</a> ・ 1 day ago ・ △ 2</p>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ </div>
287
+ </section>
288
+
289
+ <!-- Divider -->
290
+ <div class="text-center my-16">
291
+ <div class="inline-flex items-center">
292
+ <div class="h-px w-16 bg-gray-300"></div>
293
+ <span class="px-4 text-lg font-medium text-gray-500">Wait, there's more</span>
294
+ <div class="h-px w-16 bg-gray-300"></div>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Features Grid -->
299
+ <section class="mb-24">
300
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
301
+ <div class="bg-white rounded-2xl shadow-lg p-8 hover:shadow-xl transition-all duration-300 card-hover">
302
+ <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-purple-100 text-purple-600 mb-4">
303
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
304
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z" />
305
+ </svg>
306
+ </div>
307
+ <h3 class="text-2xl font-bold mb-4 text-gray-900">Exclusive PRO Badge</h3>
308
+ <p class="text-gray-600">
309
+ Stand out in the community with a verified PRO badge on your profile that showcases your support.
310
+ </p>
311
+ </div>
312
+ <div class="bg-white rounded-2xl shadow-lg p-8 hover:shadow-xl transition-all duration-300 card-hover">
313
+ <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-blue-100 text-blue-600 mb-4">
314
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
315
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10" />
316
+ </svg>
317
+ </div>
318
+ <h3 class="text-2xl font-bold mb-4 text-gray-900">Private Dataset Viewer</h3>
319
+ <p class="text-gray-600">
320
+ Collaborate seamlessly with visual dataset exploration tools for your private repositories.
321
+ </p>
322
+ </div>
323
+ <div class="bg-white rounded-2xl shadow-lg p-8 hover:shadow-xl transition-all duration-300 card-hover">
324
+ <div class="flex items-center justify-center w-14 h-14 rounded-xl bg-green-100 text-green-600 mb-4">
325
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
326
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
327
+ </svg>
328
+ </div>
329
+ <h3 class="text-2xl font-bold mb-4 text-gray-900">Early Feature Access</h3>
330
+ <p class="text-gray-600">
331
+ Be the first to test and provide feedback on upcoming platform features before general release.
332
+ </p>
333
+ </div>
334
+ </div>
335
+ </section>
336
+
337
+ <!-- CTA Section -->
338
+ <section class="bg-gradient-to-r from-blue-900 to-gray-900 text-white rounded-2xl shadow-xl p-12 md:p-16 text-center fade-in" style="animation-delay: 0.8s">
339
+ <h2 class="text-3xl md:text-4xl font-bold mb-5">Ready to accelerate your AI journey?</h2>
340
+ <p class="text-gray-300 text-lg md:text-xl mb-8 max-w-3xl mx-auto">
341
+ Join thousands of developers and researchers who are already using Hugging Face Pro to build the future of AI.
342
+ </p>
343
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
344
+ <a href="#pricing" class="inline-flex items-center justify-center space-x-2 bg-white text-gray-900 px-8 py-4 rounded-xl font-semibold hover:bg-gray-100 transition-all duration-300 text-lg shadow-lg hover:shadow-xl">
345
+ <span>Get Pro for $9/month</span>
346
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
347
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd" />
348
+ </svg>
349
+ </a>
350
+ <a href="#enterprise" class="inline-flex items-center justify-center space-x-2 bg-gray-800 text-white px-8 py-4 rounded-xl font-semibold hover:bg-gray-700 transition-all duration-300 text-lg shadow-lg hover:shadow-xl">
351
+ <span>Enterprise Solutions</span>
352
+ </a>
353
+ </div>
354
+ <p class="mt-6 text-gray-400 text-sm">
355
+ No credit card required for 7-day free trial. Cancel anytime.
356
+ </p>
357
+ </section>
358
+
359
+ <!-- Footer -->
360
+ <footer class="mt-24 text-center text-gray-500 text-sm">
361
+ <p>© 2023 Hugging Face. All rights reserved.</p>
362
+ <div class="flex justify-center space-x-6 mt-4">
363
+ <a href="#" class="text-gray-500 hover:text-gray-700">Terms</a>
364
+ <a href="#" class="text-gray-500 hover:text-gray-700">Privacy</a>
365
+ <a href="#" class="text-gray-500 hover:text-gray-700">Docs</a>
366
+ <a href="#" class="text-gray-500 hover:text-gray-700">Support</a>
367
+ </div>
368
+ </footer>
369
+ </div>
370
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=victor/pro-landing" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
371
+ </html>