ICExrp commited on
Commit
df7daf9
·
verified ·
1 Parent(s): be3d713

Remake this site https://portal.akidcalledbeast.com

Browse files

but rename it Degen Hub. Make it for the Degen Cubes

Files changed (2) hide show
  1. README.md +7 -4
  2. index.html +329 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
  title: Degen Cube Portal
3
- emoji:
4
- colorFrom: red
5
- colorTo: blue
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: Degen Cube Portal
3
+ colorFrom: green
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).
index.html CHANGED
@@ -1,19 +1,329 @@
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" class="dark">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Degen Hub | Portal</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ undefined: {
15
+ 500: '#6366f1',
16
+ 600: '#4f46e5',
17
+ },
18
+ undefined: {
19
+ 500: '#10b981',
20
+ 600: '#059669',
21
+ }
22
+ }
23
+ }
24
+ }
25
+ }
26
+ </script>
27
+ <script src="https://unpkg.com/feather-icons"></script>
28
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
29
+ <style>
30
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
31
+ body {
32
+ font-family: 'Inter', sans-serif;
33
+ background-color: #0f172a;
34
+ color: #f8fafc;
35
+ }
36
+ .gradient-text {
37
+ background-clip: text;
38
+ -webkit-background-clip: text;
39
+ color: transparent;
40
+ background-image: linear-gradient(90deg, #6366f1, #10b981);
41
+ }
42
+ </style>
43
+ </head>
44
+ <body class="min-h-screen">
45
+ <!-- Navigation -->
46
+ <nav class="bg-gray-900 border-b border-gray-800">
47
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
48
+ <div class="flex items-center justify-between h-16">
49
+ <div class="flex items-center">
50
+ <div class="flex-shrink-0">
51
+ <span class="text-2xl font-bold gradient-text">Degen Hub</span>
52
+ </div>
53
+ <div class="hidden md:block">
54
+ <div class="ml-10 flex items-baseline space-x-4">
55
+ <a href="#" class="bg-gray-800 text-white px-3 py-2 rounded-md text-sm font-medium">Dashboard</a>
56
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Cubes</a>
57
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Market</a>
58
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Profile</a>
59
+ </div>
60
+ </div>
61
+ </div>
62
+ <div class="hidden md:block">
63
+ <div class="ml-4 flex items-center md:ml-6">
64
+ <button class="p-1 rounded-full text-gray-400 hover:text-white focus:outline-none">
65
+ <i data-feather="bell"></i>
66
+ </button>
67
+ <div class="ml-3 relative">
68
+ <div>
69
+ <button class="max-w-xs flex items-center text-sm rounded-full focus:outline-none" id="user-menu">
70
+ <img class="h-8 w-8 rounded-full" src="http://static.photos/abstract/200x200/42" alt="">
71
+ </button>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ <div class="-mr-2 flex md:hidden">
77
+ <button type="button" class="bg-gray-800 inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
78
+ <span class="sr-only">Open main menu</span>
79
+ <i data-feather="menu"></i>
80
+ </button>
81
+ </div>
82
+ </div>
83
+ </div>
84
+
85
+ <!-- Mobile menu -->
86
+ <div class="md:hidden hidden" id="mobile-menu">
87
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
88
+ <a href="#" class="bg-gray-800 text-white block px-3 py-2 rounded-md text-base font-medium">Dashboard</a>
89
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Cubes</a>
90
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Market</a>
91
+ <a href="#" class="text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-base font-medium">Profile</a>
92
+ </div>
93
+ <div class="pt-4 pb-3 border-t border-gray-700">
94
+ <div class="flex items-center px-5">
95
+ <div class="flex-shrink-0">
96
+ <img class="h-10 w-10 rounded-full" src="http://static.photos/abstract/200x200/42" alt="">
97
+ </div>
98
+ <div class="ml-3">
99
+ <div class="text-base font-medium text-white">Degen User</div>
100
+ <div class="text-sm font-medium text-gray-400">user@degenhub.com</div>
101
+ </div>
102
+ </div>
103
+ <div class="mt-3 px-2 space-y-1">
104
+ <a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-gray-400 hover:text-white hover:bg-gray-700">Sign out</a>
105
+ </div>
106
+ </div>
107
+ </div>
108
+ </nav>
109
+
110
+ <!-- Hero Section -->
111
+ <div class="relative overflow-hidden">
112
+ <div class="max-w-7xl mx-auto">
113
+ <div class="relative z-10 pb-8 sm:pb-16 md:pb-20 lg:max-w-2xl lg:w-full lg:pb-28 xl:pb-32">
114
+ <main class="mt-10 mx-auto max-w-7xl px-4 sm:mt-12 sm:px-6 lg:mt-16 lg:px-8 xl:mt-20">
115
+ <div class="sm:text-center lg:text-left">
116
+ <h1 class="text-4xl tracking-tight font-extrabold sm:text-5xl md:text-6xl">
117
+ <span class="block">Welcome to</span>
118
+ <span class="block gradient-text">Degen Hub</span>
119
+ </h1>
120
+ <p class="mt-3 text-base text-gray-300 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
121
+ The ultimate portal for Degen Cubes. Trade, collect, and explore the world of degenerate NFTs.
122
+ </p>
123
+ <div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
124
+ <div class="rounded-md shadow">
125
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-undefined-600 hover:bg-undefined-700 md:py-4 md:text-lg md:px-10">
126
+ Get Started
127
+ </a>
128
+ </div>
129
+ <div class="mt-3 sm:mt-0 sm:ml-3">
130
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-undefined-700 bg-undefined-100 hover:bg-undefined-200 md:py-4 md:text-lg md:px-10">
131
+ Learn More
132
+ </a>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </main>
137
+ </div>
138
+ </div>
139
+ <div class="lg:absolute lg:inset-y-0 lg:right-0 lg:w-1/2">
140
+ <img class="h-56 w-full object-cover sm:h-72 md:h-96 lg:w-full lg:h-full" src="http://static.photos/abstract/1200x630/69" alt="">
141
+ </div>
142
+ </div>
143
+
144
+ <!-- Stats Section -->
145
+ <div class="bg-gray-900 pt-12 sm:pt-16">
146
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
147
+ <div class="max-w-4xl mx-auto text-center">
148
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
149
+ Degen Cubes by the numbers
150
+ </h2>
151
+ <p class="mt-3 text-xl text-gray-300">
152
+ The most degenerate NFT collection on the blockchain.
153
+ </p>
154
+ </div>
155
+ </div>
156
+ <div class="mt-10 pb-12 bg-gray-900 sm:pb-16">
157
+ <div class="relative">
158
+ <div class="absolute inset-0 h-1/2 bg-gray-900"></div>
159
+ <div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
160
+ <div class="max-w-4xl mx-auto">
161
+ <dl class="rounded-lg bg-gray-800 shadow-lg sm:grid sm:grid-cols-3">
162
+ <div class="flex flex-col border-b border-gray-700 p-6 text-center sm:border-0 sm:border-r">
163
+ <dt class="order-2 mt-2 text-lg leading-6 font-medium text-gray-300">
164
+ Total Cubes
165
+ </dt>
166
+ <dd class="order-1 text-5xl font-extrabold text-undefined-500">
167
+ 10,000
168
+ </dd>
169
+ </div>
170
+ <div class="flex flex-col border-t border-b border-gray-700 p-6 text-center sm:border-0 sm:border-l sm:border-r">
171
+ <dt class="order-2 mt-2 text-lg leading-6 font-medium text-gray-300">
172
+ Floor Price
173
+ </dt>
174
+ <dd class="order-1 text-5xl font-extrabold text-undefined-500">
175
+ 0.69 ETH
176
+ </dd>
177
+ </div>
178
+ <div class="flex flex-col border-t border-gray-700 p-6 text-center sm:border-0 sm:border-l">
179
+ <dt class="order-2 mt-2 text-lg leading-6 font-medium text-gray-300">
180
+ Volume
181
+ </dt>
182
+ <dd class="order-1 text-5xl font-extrabold text-undefined-500">
183
+ 420 ETH
184
+ </dd>
185
+ </div>
186
+ </dl>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Featured Cubes -->
194
+ <div class="py-12 bg-gray-900">
195
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
196
+ <div class="lg:text-center">
197
+ <h2 class="text-base text-undefined-600 font-semibold tracking-wide uppercase">Featured</h2>
198
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-white sm:text-4xl">
199
+ Hot Degen Cubes
200
+ </p>
201
+ <p class="mt-4 max-w-2xl text-xl text-gray-300 lg:mx-auto">
202
+ Check out the most sought-after cubes in the collection.
203
+ </p>
204
+ </div>
205
+
206
+ <div class="mt-10">
207
+ <div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
208
+ <!-- Cube 1 -->
209
+ <div class="pt-6">
210
+ <div class="flow-root bg-gray-800 rounded-lg px-6 pb-8 h-full">
211
+ <div class="-mt-6">
212
+ <div class="flex items-center justify-center h-48 w-48 rounded-md bg-gradient-to-r from-undefined-500 to-undefined-600 mx-auto">
213
+ <span class="text-5xl font-bold text-white">🎲</span>
214
+ </div>
215
+ <h3 class="mt-8 text-lg font-medium text-white tracking-tight">Golden Degen</h3>
216
+ <p class="mt-5 text-base text-gray-300">
217
+ The rarest of them all. Only 1 exists.
218
+ </p>
219
+ <div class="mt-6 flex justify-between items-center">
220
+ <span class="text-undefined-500 font-bold">1.2 ETH</span>
221
+ <button class="px-4 py-2 bg-undefined-600 text-white rounded-md hover:bg-undefined-700 transition">
222
+ Buy Now
223
+ </button>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ </div>
228
+
229
+ <!-- Cube 2 -->
230
+ <div class="pt-6">
231
+ <div class="flow-root bg-gray-800 rounded-lg px-6 pb-8 h-full">
232
+ <div class="-mt-6">
233
+ <div class="flex items-center justify-center h-48 w-48 rounded-md bg-gradient-to-r from-purple-500 to-pink-500 mx-auto">
234
+ <span class="text-5xl font-bold text-white">🎲</span>
235
+ </div>
236
+ <h3 class="mt-8 text-lg font-medium text-white tracking-tight">Cosmic Cube</h3>
237
+ <p class="mt-5 text-base text-gray-300">
238
+ A portal to another dimension.
239
+ </p>
240
+ <div class="mt-6 flex justify-between items-center">
241
+ <span class="text-undefined-500 font-bold">0.89 ETH</span>
242
+ <button class="px-4 py-2 bg-undefined-600 text-white rounded-md hover:bg-undefined-700 transition">
243
+ Buy Now
244
+ </button>
245
+ </div>
246
+ </div>
247
+ </div>
248
+ </div>
249
+
250
+ <!-- Cube 3 -->
251
+ <div class="pt-6">
252
+ <div class="flow-root bg-gray-800 rounded-lg px-6 pb-8 h-full">
253
+ <div class="-mt-6">
254
+ <div class="flex items-center justify-center h-48 w-48 rounded-md bg-gradient-to-r from-blue-500 to-teal-500 mx-auto">
255
+ <span class="text-5xl font-bold text-white">🎲</span>
256
+ </div>
257
+ <h3 class="mt-8 text-lg font-medium text-white tracking-tight">Ocean Degen</h3>
258
+ <p class="mt-5 text-base text-gray-300">
259
+ Dive into the deep blue.
260
+ </p>
261
+ <div class="mt-6 flex justify-between items-center">
262
+ <span class="text-undefined-500 font-bold">0.42 ETH</span>
263
+ <button class="px-4 py-2 bg-undefined-600 text-white rounded-md hover:bg-undefined-700 transition">
264
+ Buy Now
265
+ </button>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ </div>
273
+ </div>
274
+
275
+ <!-- CTA Section -->
276
+ <div class="bg-gray-800">
277
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
278
+ <h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
279
+ <span class="block">Ready to dive in?</span>
280
+ <span class="block gradient-text">Start collecting Degen Cubes today.</span>
281
+ </h2>
282
+ <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
283
+ <div class="inline-flex rounded-md shadow">
284
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-undefined-600 hover:bg-undefined-700">
285
+ Connect Wallet
286
+ </a>
287
+ </div>
288
+ <div class="ml-3 inline-flex rounded-md shadow">
289
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-undefined-600 bg-white hover:bg-gray-50">
290
+ Learn more
291
+ </a>
292
+ </div>
293
+ </div>
294
+ </div>
295
+ </div>
296
+
297
+ <!-- Footer -->
298
+ <footer class="bg-gray-900">
299
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8">
300
+ <div class="xl:grid xl:grid-cols-3 xl:gap-8">
301
+ <div class="space-y-8 xl:col-span-1">
302
+ <span class="text-2xl font-bold gradient-text">Degen Hub</span>
303
+ <p class="text-gray-300 text-base">
304
+ The ultimate portal for Degen Cubes. Trade, collect, and explore.
305
+ </p>
306
+ <div class="flex space-x-6">
307
+ <a href="#" class="text-gray-400 hover:text-white">
308
+ <i data-feather="twitter"></i>
309
+ </a>
310
+ <a href="#" class="text-gray-400 hover:text-white">
311
+ <i data-feather="discord"></i>
312
+ </a>
313
+ <a href="#" class="text-gray-400 hover:text-white">
314
+ <i data-feather="github"></i>
315
+ </a>
316
+ </div>
317
+ </div>
318
+ <div class="mt-12 grid grid-cols-2 gap-8 xl:mt-0 xl:col-span-2">
319
+ <div class="md:grid md:grid-cols-2 md:gap-8">
320
+ <div>
321
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">
322
+ Resources
323
+ </h3>
324
+ <ul class="mt-4 space-y-4">
325
+ <li>
326
+ <a href="#" class="text-base text-gray-400 hover:text-white">
327
+ Documentation
328
+ </body>
329
+ </html>