RedneckRyan commited on
Commit
3bfaab2
·
verified ·
1 Parent(s): 4a45082

Lets refine the header and change its style - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +359 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Testsite
3
- emoji: 🦀
4
- colorFrom: gray
5
- colorTo: yellow
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: testsite
3
+ emoji: 🐳
4
+ colorFrom: blue
5
+ colorTo: purple
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,359 @@
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>Atlantic Shores Roleplay | Whitelisted FiveM Server</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
+ .video-background {
11
+ position: relative;
12
+ width: 100%;
13
+ height: 100vh;
14
+ overflow: hidden;
15
+ }
16
+ .video-background video {
17
+ position: absolute;
18
+ top: 50%;
19
+ left: 50%;
20
+ transform: translate(-50%, -50%);
21
+ min-width: 100%;
22
+ min-height: 100%;
23
+ z-index: 0;
24
+ }
25
+ .video-overlay {
26
+ position: absolute;
27
+ top: 0;
28
+ left: 0;
29
+ width: 100%;
30
+ height: 100%;
31
+ background-color: rgba(0, 0, 0, 0.6);
32
+ z-index: 1;
33
+ }
34
+ .content {
35
+ position: relative;
36
+ z-index: 2;
37
+ }
38
+ .counter-item {
39
+ transition: all 0.3s ease;
40
+ }
41
+ .counter-item:hover {
42
+ transform: translateY(-5px);
43
+ }
44
+ .department-card {
45
+ transition: all 0.3s ease;
46
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
47
+ }
48
+ .department-card:hover {
49
+ transform: translateY(-10px);
50
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
51
+ }
52
+ .nav-link {
53
+ position: relative;
54
+ }
55
+ .nav-link::after {
56
+ content: '';
57
+ position: absolute;
58
+ width: 0;
59
+ height: 2px;
60
+ bottom: -2px;
61
+ left: 0;
62
+ background-color: #3b82f6;
63
+ transition: width 0.3s ease;
64
+ }
65
+ .nav-link:hover::after {
66
+ width: 100%;
67
+ }
68
+ .gradient-text {
69
+ background: linear-gradient(90deg, #23d7d6, #327aaf, #43067c);
70
+ background-size: 200% auto;
71
+ background-clip: text;
72
+ -webkit-background-clip: text;
73
+ -webkit-text-fill-color: transparent;
74
+ transition: background-position 0.5s ease;
75
+ }
76
+ .gradient-text:hover {
77
+ background-position: 100% center;
78
+ }
79
+ </style>
80
+ </head>
81
+ <body class="bg-black text-gray-100 font-sans">
82
+ <!-- Header with Logo and Navigation -->
83
+ <header class="fixed w-full z-50 bg-black bg-opacity-90 shadow-lg">
84
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
85
+ <div class="flex items-center">
86
+ <img src="https://via.placeholder.com/400x80" alt="Atlantic Shores Logo" class="h-16 md:h-20 w-auto">
87
+ </div>
88
+ <nav class="hidden md:flex space-x-8">
89
+ <a href="#" class="nav-link text-gray-300 hover:text-white">Home</a>
90
+ <a href="#" class="nav-link text-gray-300 hover:text-white">About</a>
91
+ <a href="#" class="nav-link text-gray-300 hover:text-white">Departments</a>
92
+ <a href="#" class="nav-link text-gray-300 hover:text-white">Rules</a>
93
+ <a href="#" class="nav-link text-gray-300 hover:text-white">Join</a>
94
+ </nav>
95
+ <button class="md:hidden text-gray-300 hover:text-white">
96
+ <i class="fas fa-bars text-2xl"></i>
97
+ </button>
98
+ </div>
99
+ </header>
100
+ <br><br><br>
101
+ <!-- Hero Section with Video Background -->
102
+ <section class="video-background">
103
+ <video autoplay muted loop>
104
+ <source src="https://assets.mixkit.co/videos/preview/mixkit-city-traffic-at-night-1080-large.mp4" type="video/mp4">
105
+ Your browser does not support the video tag.
106
+ </video>
107
+ <div class="video-overlay"></div>
108
+ <div class="content h-full flex flex-col justify-center items-center text-center px-4">
109
+ <div class="max-w-4xl mx-auto">
110
+ <div class="flex items-center mb-10">
111
+ <div class="text-left pr-6 border-r border-gray-500">
112
+ <p class="text-xl md:text-2xl font-bold gradient-text">Unleashing Passion,<br>Redefining Reality</p>
113
+ </div>
114
+ <div class="text-left pl-6 text-gray-300">
115
+ <p class="text-lg md:text-xl">Established in early 2023, we are dedicated to creating a unique, realistic, inclusive and authentic Florida based community</p>
116
+ </div>
117
+ </div>
118
+
119
+ <div class="flex flex-wrap justify-center gap-4 mb-16">
120
+ <a href="#" class="px-8 py-3 bg-gradient-to-r from-[#23d7d6] to-[#327aaf] hover:from-[#327aaf] hover:to-[#43067c] rounded-full font-semibold transition duration-300 transform hover:scale-105 shadow-lg">
121
+ <i class="fas fa-user-plus mr-2"></i> Apply Now
122
+ </a>
123
+ <a href="#" class="px-8 py-3 bg-transparent border-2 border-blue-500 hover:bg-blue-900 hover:bg-opacity-30 rounded-full font-semibold transition duration-300 transform hover:scale-105">
124
+ <i class="fas fa-book-open mr-2"></i> Read Rules
125
+ </a>
126
+ </div>
127
+
128
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4 mt-8">
129
+ <div class="counter-item bg-gray-900 bg-opacity-70 p-4 rounded-lg">
130
+ <div class="text-3xl font-bold text-[#23d7d6]" id="playerCount">0</div>
131
+ <div class="text-gray-400">Players Online</div>
132
+ </div>
133
+ <div class="counter-item bg-gray-900 bg-opacity-70 p-4 rounded-lg">
134
+ <div class="text-3xl font-bold text-blue-400">50+</div>
135
+ <div class="text-gray-400">Active Members</div>
136
+ </div>
137
+ <div class="counter-item bg-gray-900 bg-opacity-70 p-4 rounded-lg">
138
+ <div class="text-3xl font-bold text-blue-400">24/7</div>
139
+ <div class="text-gray-400">Server Uptime</div>
140
+ </div>
141
+ <div class="counter-item bg-gray-900 bg-opacity-70 p-4 rounded-lg">
142
+ <div class="text-3xl font-bold text-blue-400">100%</div>
143
+ <div class="text-gray-400">Whitelisted</div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </section>
149
+
150
+ <!-- About Us Section -->
151
+ <section class="py-20 bg-gradient-to-b from-gray-900 to-black">
152
+ <div class="container mx-auto px-4">
153
+ <div class="text-center mb-16">
154
+ <h2 class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-[#23d7d6] via-[#327aaf] to-[#43067c] bg-clip-text text-transparent">About Atlantic Shores</h2>
155
+ <p class="max-w-4xl mx-auto text-gray-400">Discover our story and what makes our community special</p>
156
+ </div>
157
+
158
+ <div class="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
159
+ <div>
160
+ <h3 class="text-2xl font-bold mb-4 text-white">Our Mission</h3>
161
+ <p class="text-gray-400 mb-6">Atlantic Shores Roleplay was founded in 2023 with a simple goal: to create the most immersive and realistic FiveM roleplay experience. We focus on quality over quantity, fostering a community where every member contributes to our shared story.</p>
162
+
163
+ <h3 class="text-2xl font-bold mb-4 text-white">What We Offer</h3>
164
+ <ul class="space-y-3 text-gray-400">
165
+ <li class="flex items-start">
166
+ <i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
167
+ <span>Whitelisted, high-quality roleplay with active staff oversight</span>
168
+ </li>
169
+ <li class="flex items-start">
170
+ <i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
171
+ <span>Custom-developed scripts and resources for enhanced realism</span>
172
+ </li>
173
+ <li class="flex items-start">
174
+ <i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
175
+ <span>Professional departments with structured progression systems</span>
176
+ </li>
177
+ <li class="flex items-start">
178
+ <i class="fas fa-check-circle text-[#23d7d6] mt-1 mr-3"></i>
179
+ <span>Active civilian RP opportunities and economy systems</span>
180
+ </li>
181
+ </ul>
182
+ </div>
183
+
184
+ <div class="bg-gray-800 rounded-xl overflow-hidden">
185
+ <img src="https://via.placeholder.com/800x500/1e293b/ffffff?text=Community+Spotlight" alt="Atlantic Shores Community" class="w-full h-auto">
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </section>
190
+
191
+ <!-- Departments Section -->
192
+ <section class="py-20 bg-gradient-to-b from-gray-900 to-black">
193
+ <div class="container mx-auto px-4">
194
+ <div class="text-center mb-16">
195
+ <h2 class="text-3xl md:text-4xl font-bold mb-4 bg-gradient-to-r from-blue-400 to-blue-600 bg-clip-text text-transparent">Our Departments</h2>
196
+ <p class="max-w-2xl mx-auto text-gray-400">Join one of our professional departments and experience roleplay like never before.</p>
197
+ </div>
198
+
199
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-8">
200
+ <!-- LSPD -->
201
+ <div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
202
+ <div class="h-48 bg-gradient-to-br from-[#23d7d6] to-[#327aaf] flex items-center justify-center" oncontextmenu="return false;">
203
+ <img src="https://via.placeholder.com/150x150/327aaf/ffffff?text=LSPD" alt="LSPD Logo" class="h-32 w-32 object-contain">
204
+ </div>
205
+ <div class="p-6">
206
+ <h3 class="text-xl font-bold mb-2 text-blue-400">Los Santos Police Department</h3>
207
+ <p class="text-gray-400 mb-4">Protect and serve the citizens of Los Santos with honor and integrity.</p>
208
+ <a href="#" class="text-blue-400 hover:text-blue-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- BCSO -->
213
+ <div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
214
+ <div class="h-48 bg-blue-800 flex items-center justify-center" oncontextmenu="return false;">
215
+ <img src="https://via.placeholder.com/150x150/1e40af/ffffff?text=BCSO" alt="BCSO Logo" class="h-32 w-32 object-contain">
216
+ </div>
217
+ <div class="p-6">
218
+ <h3 class="text-xl font-bold mb-2 text-blue-400">Blaine County Sheriff's Office</h3>
219
+ <p class="text-gray-400 mb-4">Maintain law and order in the rural areas of Blaine County.</p>
220
+ <a href="#" class="text-blue-400 hover:text-blue-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
221
+ </div>
222
+ </div>
223
+
224
+ <!-- EMS -->
225
+ <div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
226
+ <div class="h-48 bg-red-900 flex items-center justify-center" oncontextmenu="return false;">
227
+ <img src="https://via.placeholder.com/150x150/991b1b/ffffff?text=EMS" alt="EMS Logo" class="h-32 w-32 object-contain">
228
+ </div>
229
+ <div class="p-6">
230
+ <h3 class="text-xl font-bold mb-2 text-red-400">Emergency Medical Services</h3>
231
+ <p class="text-gray-400 mb-4">Save lives and provide critical medical care to those in need.</p>
232
+ <a href="#" class="text-red-400 hover:text-red-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- DOJ -->
237
+ <div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
238
+ <div class="h-48 bg-purple-900 flex items-center justify-center" oncontextmenu="return false;">
239
+ <img src="https://via.placeholder.com/150x150/7e22ce/ffffff?text=DOJ" alt="DOJ Logo" class="h-32 w-32 object-contain">
240
+ </div>
241
+ <div class="p-6">
242
+ <h3 class="text-xl font-bold mb-2 text-purple-400">Department of Justice</h3>
243
+ <p class="text-gray-400 mb-4">Uphold the law through prosecution and judicial processes.</p>
244
+ <a href="#" class="text-purple-400 hover:text-purple-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Fire Department -->
249
+ <div class="department-card bg-gray-800 rounded-lg overflow-hidden hover:bg-gray-700">
250
+ <div class="h-48 bg-orange-900 flex items-center justify-center" oncontextmenu="return false;">
251
+ <img src="https://via.placeholder.com/150x150/9a3412/ffffff?text=Fire" alt="Fire Department Logo" class="h-32 w-32 object-contain">
252
+ </div>
253
+ <div class="p-6">
254
+ <h3 class="text-xl font-bold mb-2 text-orange-400">Fire Department</h3>
255
+ <p class="text-gray-400 mb-4">Respond to emergencies, fight fires, and protect property.</p>
256
+ <a href="#" class="text-orange-400 hover:text-orange-300 font-semibold">Learn More <i class="fas fa-arrow-right ml-1"></i></a>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <div class="text-center mt-16">
262
+ <a href="#" class="inline-block px-8 py-3 bg-blue-600 hover:bg-blue-700 rounded-full font-semibold transition duration-300 transform hover:scale-105 shadow-lg">
263
+ <i class="fas fa-users mr-2"></i> View All Departments
264
+ </a>
265
+ </div>
266
+ </div>
267
+ </section>
268
+
269
+ <!-- Footer -->
270
+ <footer class="bg-black py-12 border-t border-gray-800">
271
+ <div class="container mx-auto px-4">
272
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
273
+ <div>
274
+ <div class="flex items-center mb-4">
275
+ <img src="https://via.placeholder.com/987x140" alt="Atlantic Shores Logo" class="h-[140px] w-[987px]">
276
+ </div>
277
+ <p class="text-gray-400">A premium whitelisted FiveM roleplay community focused on quality roleplay and immersive experiences.</p>
278
+ </div>
279
+
280
+ <div>
281
+ <h4 class="text-lg font-semibold mb-4 text-white">Quick Links</h4>
282
+ <ul class="space-y-2">
283
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Home</a></li>
284
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Apply</a></li>
285
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Rules</a></li>
286
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition">Departments</a></li>
287
+ </ul>
288
+ </div>
289
+
290
+ <div>
291
+ <h4 class="text-lg font-semibold mb-4 text-white">Connect</h4>
292
+ <ul class="space-y-2">
293
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-discord mr-2"></i> Discord</a></li>
294
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-twitter mr-2"></i> Twitter</a></li>
295
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-youtube mr-2"></i> YouTube</a></li>
296
+ <li><a href="#" class="text-gray-400 hover:text-blue-400 transition"><i class="fab fa-instagram mr-2"></i> Instagram</a></li>
297
+ </ul>
298
+ </div>
299
+
300
+ <div>
301
+ <h4 class="text-lg font-semibold mb-4 text-white">Server Info</h4>
302
+ <div class="bg-gray-900 p-4 rounded-lg">
303
+ <div class="flex items-center mb-2">
304
+ <div class="w-3 h-3 rounded-full bg-green-500 mr-2"></div>
305
+ <span class="text-gray-300">Server Status: <span class="text-green-400">Online</span></span>
306
+ </div>
307
+ <div class="text-gray-400 mb-2">Players: <span class="text-white" id="footerPlayerCount">0</span>/128</div>
308
+ <div class="text-gray-400">Website: <a href="https://asrp.us" class="text-[#23d7d6] hover:underline">asrp.us</a></div>
309
+ <div class="text-gray-400">IP: connect.atlanticshoresrp.com</div>
310
+ </div>
311
+ </div>
312
+ </div>
313
+
314
+ <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500">
315
+ <p>&copy; 2023 Atlantic Shores Roleplay. All rights reserved.</p>
316
+ </div>
317
+ </div>
318
+ </footer>
319
+
320
+ <script>
321
+ // Animated counter for player count
322
+ function animateCounter(elementId, target, duration = 2000) {
323
+ const element = document.getElementById(elementId);
324
+ const start = 0;
325
+ const increment = target / (duration / 16);
326
+ let current = start;
327
+
328
+ const timer = setInterval(() => {
329
+ current += increment;
330
+ if (current >= target) {
331
+ clearInterval(timer);
332
+ current = target;
333
+ }
334
+ element.textContent = Math.floor(current);
335
+ document.getElementById('footerPlayerCount').textContent = Math.floor(current);
336
+ }, 16);
337
+ }
338
+
339
+ // Start counters when page loads
340
+ window.addEventListener('load', () => {
341
+ // Simulate 87 players online
342
+ animateCounter('playerCount', 87);
343
+ });
344
+
345
+ // Mobile menu toggle (would need actual implementation)
346
+ document.querySelector('.md\\:hidden').addEventListener('click', () => {
347
+ alert('Mobile menu would open here in a full implementation');
348
+ });
349
+ </script>
350
+ <script>
351
+ // Prevent right-click on entire document
352
+ document.addEventListener('contextmenu', function(e) {
353
+ if (e.target.tagName === 'IMG') {
354
+ e.preventDefault();
355
+ }
356
+ });
357
+ </script>
358
+ <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=RedneckRyan/testsite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
359
+ </html>