lyfuci commited on
Commit
e680b6f
·
verified ·
1 Parent(s): b997680

名字改成 SplishFace

Browse files
Files changed (2) hide show
  1. README.md +9 -5
  2. index.html +274 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Undefined
3
- emoji: 🚀
4
- colorFrom: pink
5
- colorTo: green
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: undefined
3
+ colorFrom: yellow
4
+ colorTo: yellow
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
index.html CHANGED
@@ -1,19 +1,275 @@
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>HuggyFace Clone Hub - AI Community Platform</title>
7
+ <link rel="icon" type="image/x-icon" href="https://huggingface.co/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ primary: {
15
+ 50: '#f0f9ff',
16
+ 100: '#e0f2fe',
17
+ 500: '#3b82f6',
18
+ 600: '#2563eb',
19
+ 700: '#1d4ed8',
20
+ },
21
+ secondary: {
22
+ 50: '#f8fafc',
23
+ 100: '#f1f5f9',
24
+ 500: '#64748b',
25
+ 600: '#475569',
26
+ 700: '#334155',
27
+ }
28
+ }
29
+ }
30
+ }
31
+ }
32
+ </script>
33
+ <script src="https://unpkg.com/feather-icons"></script>
34
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
35
+ <style>
36
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
37
+ body {
38
+ font-family: 'Inter', sans-serif;
39
+ }
40
+ .gradient-text {
41
+ background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
42
+ -webkit-background-clip: text;
43
+ background-clip: text;
44
+ color: transparent;
45
+ }
46
+ .hero-gradient {
47
+ background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, rgba(139,92,246,0.1) 100%);
48
+ }
49
+ </style>
50
+ </head>
51
+ <body class="bg-white text-gray-900">
52
+ <!-- Navigation -->
53
+ <nav class="bg-white border-b border-gray-200 px-4 py-3 sticky top-0 z-50">
54
+ <div class="max-w-7xl mx-auto flex items-center justify-between">
55
+ <div class="flex items-center space-x-8">
56
+ <a href="#" class="flex items-center">
57
+ <span class="text-2xl font-bold gradient-text">HuggyFace</span>
58
+ </a>
59
+ <div class="hidden md:flex space-x-6">
60
+ <a href="#" class="text-gray-700 hover:text-primary-600 font-medium">Models</a>
61
+ <a href="#" class="text-gray-700 hover:text-primary-600 font-medium">Datasets</a>
62
+ <a href="#" class="text-gray-700 hover:text-primary-600 font-medium">Spaces</a>
63
+ <a href="#" class="text-gray-700 hover:text-primary-600 font-medium">Docs</a>
64
+ <a href="#" class="text-gray-700 hover:text-primary-600 font-medium">Solutions</a>
65
+ <a href="#" class="text-gray-700 hover:text-primary-600 font-medium">Pricing</a>
66
+ </div>
67
+ </div>
68
+ <div class="flex items-center space-x-4">
69
+ <div class="relative hidden md:block">
70
+ <input type="text" placeholder="Search models, datasets, users..." class="pl-10 pr-4 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary-500 focus:border-transparent w-64">
71
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
72
+ </div>
73
+ <button class="hidden md:block text-gray-700 hover:text-primary-600">
74
+ <i data-feather="bell"></i>
75
+ </button>
76
+ <button class="bg-primary-600 text-white px-4 py-2 rounded-lg hover:bg-primary-700 font-medium">
77
+ Sign In
78
+ </button>
79
+ <button class="md:hidden">
80
+ <i data-feather="menu"></i>
81
+ </button>
82
+ </div>
83
+ </div>
84
+ </nav>
85
+
86
+ <!-- Hero Section -->
87
+ <section class="hero-gradient py-16">
88
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
89
+ <div class="text-center py-12">
90
+ <h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-6">
91
+ The AI community <span class="gradient-text">building the future</span>
92
+ </h1>
93
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">
94
+ Build, train and deploy state of the art models powered by the reference open source in machine learning.
95
+ </p>
96
+ <div class="mt-8 flex justify-center space-x-4">
97
+ <button class="bg-primary-600 text-white px-6 py-3 rounded-lg hover:bg-primary-700 font-medium">
98
+ Get Started
99
+ </button>
100
+ <button class="border border-gray-300 text-gray-700 px-6 py-3 rounded-lg hover:bg-gray-50 font-medium">
101
+ Documentation
102
+ </button>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </section>
107
+
108
+ <!-- Features Section -->
109
+ <section class="py-16 bg-white">
110
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
111
+ <div class="grid md:grid-cols-3 gap-8">
112
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition-shadow">
113
+ <div class="bg-primary-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
114
+ <i data-feather="cpu" class="text-primary-600 w-6 h-6"></i>
115
+ </div>
116
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Models</h3>
117
+ <p class="text-gray-600">
118
+ Explore thousands of machine learning models for all tasks and modalities.
119
+ </p>
120
+ </div>
121
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition-shadow">
122
+ <div class="bg-primary-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
123
+ <i data-feather="database" class="text-primary-600 w-6 h-6"></i>
124
+ </div>
125
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Datasets</h3>
126
+ <p class="text-gray-600">
127
+ Download and share datasets for any machine learning task.
128
+ </p>
129
+ </div>
130
+ <div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition-shadow">
131
+ <div class="bg-primary-100 w-12 h-12 rounded-lg flex items-center justify-center mb-4">
132
+ <i data-feather="code" class="text-primary-600 w-6 h-6"></i>
133
+ </div>
134
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Spaces</h3>
135
+ <p class="text-gray-600">
136
+ Deploy ML apps in seconds with just a few lines of code.
137
+ </p>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </section>
142
+
143
+ <!-- Trending Models Section -->
144
+ <section class="py-16 bg-gray-50">
145
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
146
+ <h2 class="text-3xl font-bold text-gray-900 mb-8">Trending Models</h2>
147
+ <div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-6">
148
+ <div class="bg-white p-5 rounded-xl shadow-sm hover:shadow-md transition-shadow">
149
+ <div class="flex items-center mb-4">
150
+ <img src="https://static.photos/technology/200x200/1" class="w-10 h-10 rounded-full mr-3">
151
+ <div>
152
+ <h3 class="font-medium">Stable Diffusion</h3>
153
+ <p class="text-sm text-gray-500">CompVis</p>
154
+ </div>
155
+ </div>
156
+ <p class="text-gray-600 mb-4">A latent text-to-image diffusion model capable of generating photo-realistic images given any text input.</p>
157
+ <div class="flex justify-between items-center text-sm">
158
+ <span class="text-gray-500">Updated 3 days ago</span>
159
+ <span class="text-primary-600 font-medium">15.2k</span>
160
+ </div>
161
+ </div>
162
+ <div class="bg-white p-5 rounded-xl shadow-sm hover:shadow-md transition-shadow">
163
+ <div class="flex items-center mb-4">
164
+ <img src="https://static.photos/technology/200x200/2" class="w-10 h-10 rounded-full mr-3">
165
+ <div>
166
+ <h3 class="font-medium">GPT-3</h3>
167
+ <p class="text-sm text-gray-500">OpenAI</p>
168
+ </div>
169
+ </div>
170
+ <p class="text-gray-600 mb-4">A set of models that can understand and generate natural language.</p>
171
+ <div class="flex justify-between items-center text-sm">
172
+ <span class="text-gray-500">Updated 1 week ago</span>
173
+ <span class="text-primary-600 font-medium">9.8k</span>
174
+ </div>
175
+ </div>
176
+ <div class="bg-white p-5 rounded-xl shadow-sm hover:shadow-md transition-shadow">
177
+ <div class="flex items-center mb-4">
178
+ <img src="https://static.photos/technology/200x200/3" class="w-10 h-10 rounded-full mr-3">
179
+ <div>
180
+ <h3 class="font-medium">BERT</h3>
181
+ <p class="text-sm text-gray-500">Google</p>
182
+ </div>
183
+ </div>
184
+ <p class="text-gray-600 mb-4">A transformers model pre-trained on a large corpus of English data in a self-supervised fashion.</p>
185
+ <div class="flex justify-between items-center text-sm">
186
+ <span class="text-gray-500">Updated 2 weeks ago</span>
187
+ <span class="text-primary-600 font-medium">24.7k</span>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ <div class="mt-8 text-center">
192
+ <button class="text-primary-600 font-medium hover:text-primary-700 flex items-center justify-center mx-auto">
193
+ Explore all models <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
194
+ </button>
195
+ </div>
196
+ </div>
197
+ </section>
198
+
199
+ <!-- CTA Section -->
200
+ <section class="py-16 bg-primary-600 text-white">
201
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
202
+ <h2 class="text-3xl font-bold mb-4">Ready to dive in?</h2>
203
+ <p class="text-xl mb-8 max-w-3xl mx-auto">
204
+ Join thousands of machine learning practitioners sharing models, datasets and applications.
205
+ </p>
206
+ <button class="bg-white text-primary-600 px-8 py-3 rounded-lg hover:bg-gray-100 font-medium text-lg">
207
+ Sign Up For Free
208
+ </button>
209
+ </div>
210
+ </section>
211
+
212
+ <!-- Footer -->
213
+ <footer class="bg-gray-900 text-white py-12">
214
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
215
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
216
+ <div>
217
+ <h3 class="text-sm font-semibold uppercase tracking-wider mb-4">Products</h3>
218
+ <ul class="space-y-2">
219
+ <li><a href="#" class="text-gray-400 hover:text-white">Models</a></li>
220
+ <li><a href="#" class="text-gray-400 hover:text-white">Datasets</a></li>
221
+ <li><a href="#" class="text-gray-400 hover:text-white">Spaces</a></li>
222
+ <li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
223
+ </ul>
224
+ </div>
225
+ <div>
226
+ <h3 class="text-sm font-semibold uppercase tracking-wider mb-4">Resources</h3>
227
+ <ul class="space-y-2">
228
+ <li><a href="#" class="text-gray-400 hover:text-white">Documentation</a></li>
229
+ <li><a href="#" class="text-gray-400 hover:text-white">Tutorials</a></li>
230
+ <li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
231
+ <li><a href="#" class="text-gray-400 hover:text-white">Support</a></li>
232
+ </ul>
233
+ </div>
234
+ <div>
235
+ <h3 class="text-sm font-semibold uppercase tracking-wider mb-4">Company</h3>
236
+ <ul class="space-y-2">
237
+ <li><a href="#" class="text-gray-400 hover:text-white">About</a></li>
238
+ <li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
239
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
240
+ </ul>
241
+ </div>
242
+ <div>
243
+ <h3 class="text-sm font-semibold uppercase tracking-wider mb-4">Connect</h3>
244
+ <div class="flex space-x-4">
245
+ <a href="#" class="text-gray-400 hover:text-white">
246
+ <i data-feather="twitter"></i>
247
+ </a>
248
+ <a href="#" class="text-gray-400 hover:text-white">
249
+ <i data-feather="github"></i>
250
+ </a>
251
+ <a href="#" class="text-gray-400 hover:text-white">
252
+ <i data-feather="linkedin"></i>
253
+ </a>
254
+ <a href="#" class="text-gray-400 hover:text-white">
255
+ <i data-feather="youtube"></i>
256
+ </a>
257
+ </div>
258
+ </div>
259
+ </div>
260
+ <div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center">
261
+ <div class="flex items-center">
262
+ <span class="text-2xl font-bold gradient-text">HuggyFace</span>
263
+ </div>
264
+ <div class="mt-4 md:mt-0 text-gray-400 text-sm">
265
+ &copy; 2023 HuggyFace Clone Hub. All rights reserved.
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </footer>
270
+
271
+ <script>
272
+ feather.replace();
273
+ </script>
274
+ </body>
275
  </html>