steake commited on
Commit
007d644
·
verified ·
1 Parent(s): 33ac5c8

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +313 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Accessv2
3
- emoji:
4
- colorFrom: green
5
- colorTo: gray
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: accessv2
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: pink
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,313 @@
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>ACCESS - Event Discovery Platform</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');
11
+
12
+ :root {
13
+ --color-primary: #000000;
14
+ --color-secondary: #FFFFFF;
15
+ --color-accent-yellow: #FFFF00;
16
+ --color-accent-blue: #007AFF;
17
+ --color-accent-orange: #FF5733;
18
+ --color-accent-purple: #8A2BE2;
19
+ --color-light-gray: #F0F0F0;
20
+ }
21
+
22
+ body {
23
+ font-family: 'Inter', sans-serif;
24
+ overflow-x: hidden;
25
+ }
26
+
27
+ .heading-font {
28
+ font-family: 'Bebas Neue', sans-serif;
29
+ font-weight: 400;
30
+ letter-spacing: 1px;
31
+ line-height: 0.9;
32
+ }
33
+
34
+ .hero-bg {
35
+ background-image: url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
36
+ background-size: cover;
37
+ background-position: center;
38
+ position: relative;
39
+ }
40
+
41
+ .hero-bg::before {
42
+ content: '';
43
+ position: absolute;
44
+ top: 0;
45
+ left: 0;
46
+ width: 100%;
47
+ height: 100%;
48
+ background-color: rgba(0, 0, 0, 0.3);
49
+ }
50
+
51
+ .phone-mockup {
52
+ position: relative;
53
+ width: 300px;
54
+ height: 600px;
55
+ background-color: #000;
56
+ border-radius: 40px;
57
+ padding: 10px;
58
+ box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
59
+ z-index: 2;
60
+ }
61
+
62
+ .phone-screen {
63
+ width: 100%;
64
+ height: 100%;
65
+ border-radius: 30px;
66
+ overflow: hidden;
67
+ background-size: cover;
68
+ background-position: center;
69
+ }
70
+
71
+ .ticker {
72
+ overflow: hidden;
73
+ white-space: nowrap;
74
+ }
75
+
76
+ .ticker-content {
77
+ display: inline-block;
78
+ animation: ticker 20s linear infinite;
79
+ }
80
+
81
+ @keyframes ticker {
82
+ 0% { transform: translateX(0); }
83
+ 100% { transform: translateX(-50%); }
84
+ }
85
+
86
+ .split-text-left, .split-text-right {
87
+ position: relative;
88
+ z-index: 1;
89
+ }
90
+
91
+ .feature-section {
92
+ position: relative;
93
+ overflow: hidden;
94
+ }
95
+
96
+ .input-underline {
97
+ border-bottom: 2px solid #000;
98
+ background: transparent;
99
+ padding-bottom: 8px;
100
+ outline: none;
101
+ width: 100%;
102
+ max-width: 400px;
103
+ }
104
+
105
+ @media (max-width: 768px) {
106
+ .phone-mockup {
107
+ width: 200px;
108
+ height: 400px;
109
+ margin-bottom: 40px;
110
+ }
111
+
112
+ .split-text-left, .split-text-right {
113
+ text-align: center !important;
114
+ margin-bottom: 20px;
115
+ }
116
+ }
117
+ </style>
118
+ </head>
119
+ <body class="bg-white text-black">
120
+ <!-- Header -->
121
+ <header class="fixed w-full z-50 bg-black bg-opacity-90 transition-all duration-300">
122
+ <div class="container mx-auto px-6 py-4 flex justify-between items-center">
123
+ <div class="flex items-center">
124
+ <i class="fas fa-star text-purple-500 text-2xl mr-2"></i>
125
+ <span class="text-white font-bold text-xl">ACCESS</span>
126
+ </div>
127
+ <nav class="hidden md:flex space-x-8">
128
+ <a href="#" class="text-white hover:text-purple-300 transition">About</a>
129
+ <a href="#" class="text-white hover:text-purple-300 transition">Contact</a>
130
+ </nav>
131
+ <button class="md:hidden text-white">
132
+ <i class="fas fa-bars text-2xl"></i>
133
+ </button>
134
+ </div>
135
+ </header>
136
+
137
+ <!-- Hero Section 1 -->
138
+ <section class="min-h-screen bg-black flex items-center justify-center pt-20">
139
+ <div class="container mx-auto px-6 text-center">
140
+ <h1 class="heading-font text-white text-7xl md:text-9xl lg:text-[180px] uppercase">
141
+ GIGS<br>PARTIES<br>EVENTS
142
+ </h1>
143
+ </div>
144
+ </section>
145
+
146
+ <!-- Hero Section 2 -->
147
+ <section class="min-h-screen hero-bg flex items-center justify-center relative">
148
+ <div class="container mx-auto px-6 text-center relative z-10">
149
+ <h1 class="heading-font text-white text-7xl md:text-9xl lg:text-[180px] uppercase">
150
+ GET ON<br>THE INSIDE
151
+ </h1>
152
+ </div>
153
+ </section>
154
+
155
+ <!-- Text Section -->
156
+ <section class="py-20 bg-gray-100">
157
+ <div class="container mx-auto px-6 text-center">
158
+ <h2 class="heading-font text-black text-7xl md:text-9xl lg:text-[120px] uppercase mb-8">
159
+ IN OUR<br>WORLD<br>EVERYONE<br>GOES OUT<br>AND NO<br>ONE<br>MISSES<br>OUT
160
+ </h2>
161
+ <h3 class="text-2xl md:text-3xl font-bold mb-6">Get on the inside</h3>
162
+ <p class="text-lg md:text-xl max-w-2xl mx-auto">
163
+ Coming soon to the App Store.<br>
164
+ Instantly get access to the most hyped events around you
165
+ </p>
166
+ </div>
167
+ </section>
168
+
169
+ <!-- Ticker Tape 1 -->
170
+ <section class="py-8 bg-black ticker">
171
+ <div class="ticker-content">
172
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
173
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
174
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
175
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
176
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
177
+ </div>
178
+ </section>
179
+
180
+ <!-- Feature Section 1: Discover -->
181
+ <section class="py-20 md:py-32 bg-yellow-400 feature-section">
182
+ <div class="container mx-auto px-6 flex flex-col md:flex-row items-center justify-center">
183
+ <div class="split-text-left text-left md:w-1/3 mb-12 md:mb-0 md:pr-8">
184
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">DIS</h2>
185
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">THE</h2>
186
+ </div>
187
+
188
+ <div class="phone-mockup mx-8">
189
+ <div class="phone-screen" style="background-image: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1074&q=80')"></div>
190
+ </div>
191
+
192
+ <div class="split-text-right text-right md:w-1/3 mt-12 md:mt-0 md:pl-8">
193
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">ER</h2>
194
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">IRL</h2>
195
+ </div>
196
+ </div>
197
+ </section>
198
+
199
+ <!-- Feature Section 2: Become Fan -->
200
+ <section class="py-20 md:py-32 bg-blue-500 feature-section">
201
+ <div class="container mx-auto px-6 flex flex-col md:flex-row items-center justify-center">
202
+ <div class="split-text-left text-left md:w-1/3 mb-12 md:mb-0 md:pr-8">
203
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">BECO</h2>
204
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">ULTIM</h2>
205
+ </div>
206
+
207
+ <div class="phone-mockup mx-8">
208
+ <div class="phone-screen" style="background-image: url('https://images.unsplash.com/photo-1470229722913-7c0e2dbbafd3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80')"></div>
209
+ </div>
210
+
211
+ <div class="split-text-right text-right md:w-1/3 mt-12 md:mt-0 md:pl-8">
212
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">THE</h2>
213
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">FAN</h2>
214
+ </div>
215
+ </div>
216
+ </section>
217
+
218
+ <!-- Feature Section 3: Experience -->
219
+ <section class="py-20 md:py-32 bg-orange-500 feature-section">
220
+ <div class="container mx-auto px-6 flex flex-col md:flex-row items-center justify-center">
221
+ <div class="split-text-left text-left md:w-1/3 mb-12 md:mb-0 md:pr-8">
222
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">EXP</h2>
223
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">AL</h2>
224
+ </div>
225
+
226
+ <div class="phone-mockup mx-8">
227
+ <div class="phone-screen" style="background-image: url('https://images.unsplash.com/photo-1501281668745-f7f57925c3b4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80')"></div>
228
+ </div>
229
+
230
+ <div class="split-text-right text-right md:w-1/3 mt-12 md:mt-0 md:pl-8">
231
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">NCE</h2>
232
+ <h2 class="heading-font text-black text-6xl md:text-8xl uppercase">IT</h2>
233
+ </div>
234
+ </div>
235
+ </section>
236
+
237
+ <!-- Ticker Tape 2 -->
238
+ <section class="py-8 bg-black ticker">
239
+ <div class="ticker-content">
240
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
241
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
242
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
243
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
244
+ <span class="heading-font text-white text-4xl md:text-6xl inline-block mx-4">ACCESS <i class="fas fa-star text-purple-500"></i></span>
245
+ </div>
246
+ </section>
247
+
248
+ <!-- Waitlist Section -->
249
+ <section class="py-20 bg-gray-100">
250
+ <div class="container mx-auto px-6 text-center">
251
+ <h2 class="heading-font text-black text-7xl md:text-9xl uppercase mb-8">
252
+ JOIN THE<br>WAITLIST
253
+ </h2>
254
+
255
+ <form id="waitlist-form" class="max-w-md mx-auto mb-8">
256
+ <div class="flex items-center">
257
+ <input type="email" placeholder="Enter email address" required
258
+ class="input-underline text-center text-lg focus:border-purple-500 focus:border-b-2">
259
+ <button type="submit" class="ml-4 bg-black text-white p-3 rounded-full hover:bg-purple-500 transition">
260
+ <i class="fas fa-arrow-right text-xl"></i>
261
+ </button>
262
+ </div>
263
+ </form>
264
+
265
+ <p class="text-lg md:text-xl max-w-2xl mx-auto">
266
+ Launching soon in all major cities.<br>
267
+ Get on the inside.
268
+ </p>
269
+ </div>
270
+ </section>
271
+
272
+ <!-- Footer -->
273
+ <section class="py-32 bg-black">
274
+ <div class="container mx-auto px-6 text-center">
275
+ <h2 class="heading-font text-white text-7xl md:text-9xl lg:text-[180px] uppercase">
276
+ ACCESS
277
+ </h2>
278
+ </div>
279
+ </section>
280
+
281
+ <script>
282
+ // Form submission handling
283
+ document.getElementById('waitlist-form').addEventListener('submit', function(e) {
284
+ e.preventDefault();
285
+ const email = this.querySelector('input').value;
286
+
287
+ // Simple email validation
288
+ if (/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) {
289
+ alert('Thanks for joining the waitlist! We\'ll be in touch soon.');
290
+ this.querySelector('input').value = '';
291
+ } else {
292
+ alert('Please enter a valid email address.');
293
+ }
294
+ });
295
+
296
+ // Header scroll effect
297
+ window.addEventListener('scroll', function() {
298
+ const header = document.querySelector('header');
299
+ if (window.scrollY > 50) {
300
+ header.classList.add('bg-opacity-100', 'shadow-lg');
301
+ } else {
302
+ header.classList.remove('bg-opacity-100', 'shadow-lg');
303
+ }
304
+ });
305
+
306
+ // Mobile menu toggle (would need more implementation)
307
+ document.querySelector('button.md\\:hidden').addEventListener('click', function() {
308
+ // In a full implementation, this would toggle a mobile menu
309
+ alert('Mobile menu would open here');
310
+ });
311
+ </script>
312
+ <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=steake/accessv2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
313
+ </html>