privateuserh commited on
Commit
644ee9d
·
verified ·
1 Parent(s): 79b4aa3

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +330 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Uaphe Vbeta1 00
3
- emoji: 🌍
4
- colorFrom: indigo
5
- colorTo: indigo
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: uaphe-vbeta1-00
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: blue
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,330 @@
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>UAP Pulse - Concise UFO News</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=Space+Grotesk:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Space Grotesk', sans-serif;
14
+ background-color: #0f172a;
15
+ color: #e2e8f0;
16
+ }
17
+
18
+ .post-card {
19
+ background: linear-gradient(145deg, #1e293b, #0f172a);
20
+ border-left: 3px solid #3b82f6;
21
+ transition: transform 0.2s;
22
+ }
23
+
24
+ .post-card:hover {
25
+ transform: translateY(-2px);
26
+ }
27
+
28
+ .nav-item {
29
+ position: relative;
30
+ }
31
+
32
+ .nav-item::after {
33
+ content: '';
34
+ position: absolute;
35
+ width: 0;
36
+ height: 2px;
37
+ bottom: 0;
38
+ left: 0;
39
+ background-color: #3b82f6;
40
+ transition: width 0.3s;
41
+ }
42
+
43
+ .nav-item:hover::after {
44
+ width: 100%;
45
+ }
46
+
47
+ .typewriter {
48
+ overflow: hidden;
49
+ border-right: 2px solid #3b82f6;
50
+ white-space: nowrap;
51
+ animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
52
+ }
53
+
54
+ @keyframes typing {
55
+ from { width: 0 }
56
+ to { width: 100% }
57
+ }
58
+
59
+ @keyframes blink-caret {
60
+ from, to { border-color: transparent }
61
+ 50% { border-color: #3b82f6 }
62
+ }
63
+
64
+ .glow {
65
+ text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
66
+ }
67
+ </style>
68
+ </head>
69
+ <body class="min-h-screen">
70
+ <!-- Header -->
71
+ <header class="bg-gradient-to-r from-blue-900 to-slate-900 shadow-lg">
72
+ <div class="container mx-auto px-4 py-6">
73
+ <div class="flex flex-col md:flex-row justify-between items-center">
74
+ <div class="flex items-center mb-4 md:mb-0">
75
+ <i class="fas fa-ufo text-3xl text-blue-400 mr-3"></i>
76
+ <h1 class="text-2xl md:text-3xl font-bold text-white">
77
+ <span class="typewriter glow">UAP PULSE</span>
78
+ </h1>
79
+ </div>
80
+ <nav class="flex space-x-6">
81
+ <a href="#" class="nav-item text-blue-300 hover:text-white py-2">Latest</a>
82
+ <a href="#" class="nav-item text-blue-300 hover:text-white py-2">Reports</a>
83
+ <a href="#" class="nav-item text-blue-300 hover:text-white py-2">History</a>
84
+ <a href="#" class="nav-item text-blue-300 hover:text-white py-2">Resources</a>
85
+ </nav>
86
+ </div>
87
+ </div>
88
+ </header>
89
+
90
+ <!-- Main Content -->
91
+ <main class="container mx-auto px-4 py-8">
92
+ <!-- Featured Post -->
93
+ <section class="mb-12">
94
+ <div class="bg-gradient-to-br from-blue-900/50 to-slate-900/50 rounded-xl p-6 shadow-xl border border-blue-800/30">
95
+ <div class="flex items-center mb-4">
96
+ <span class="bg-blue-500 text-white text-xs font-semibold px-2.5 py-0.5 rounded">BREAKING</span>
97
+ <span class="text-blue-300 text-sm ml-2">June 2023</span>
98
+ </div>
99
+ <h2 class="text-xl md:text-2xl font-bold text-white mb-3">Pentagon confirms new UAP footage from military pilots</h2>
100
+ <p class="text-blue-100 mb-4">"The footage shows unidentified objects exhibiting flight characteristics beyond known technology" - DoD spokesperson. Analysis ongoing.</p>
101
+ <div class="flex justify-between items-center">
102
+ <span class="text-xs text-blue-300">Source: Defense.gov</span>
103
+ <button class="text-blue-400 hover:text-blue-200 text-sm flex items-center">
104
+ <i class="fas fa-share-alt mr-1"></i> Share
105
+ </button>
106
+ </div>
107
+ </div>
108
+ </section>
109
+
110
+ <!-- Recent Posts Grid -->
111
+ <section>
112
+ <h2 class="text-xl font-semibold text-white mb-6 flex items-center">
113
+ <i class="fas fa-bolt text-blue-400 mr-2"></i> Recent Sightings
114
+ </h2>
115
+
116
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
117
+ <!-- Post 1 -->
118
+ <article class="post-card rounded-lg p-5 shadow-md hover:shadow-blue-500/10">
119
+ <div class="flex items-center mb-3">
120
+ <span class="bg-green-500 text-white text-xs font-semibold px-2 py-0.5 rounded">NEW</span>
121
+ <span class="text-slate-400 text-xs ml-2">May 15, 2023</span>
122
+ </div>
123
+ <h3 class="font-semibold text-white mb-2">Triangle UAP over Arizona</h3>
124
+ <p class="text-slate-300 text-sm mb-4">Multiple witnesses report silent black triangle with lights hovering near Phoenix. No radar confirmation.</p>
125
+ <div class="flex justify-between items-center">
126
+ <span class="text-xs text-slate-500">Source: NUFORC #123456</span>
127
+ <button class="text-blue-400 hover:text-blue-200 text-xs">
128
+ <i class="fas fa-ellipsis-h"></i>
129
+ </button>
130
+ </div>
131
+ </article>
132
+
133
+ <!-- Post 2 -->
134
+ <article class="post-card rounded-lg p-5 shadow-md hover:shadow-blue-500/10">
135
+ <div class="flex items-center mb-3">
136
+ <span class="bg-purple-500 text-white text-xs font-semibold px-2 py-0.5 rounded">HISTORIC</span>
137
+ <span class="text-slate-400 text-xs ml-2">July 1947</span>
138
+ </div>
139
+ <h3 class="font-semibold text-white mb-2">Roswell Incident Update</h3>
140
+ <p class="text-slate-300 text-sm mb-4">Declassified docs reveal new details about military response to alleged crash. Weather balloon explanation contested.</p>
141
+ <div class="flex justify-between items-center">
142
+ <span class="text-xs text-slate-500">Source: National Archives</span>
143
+ <button class="text-blue-400 hover:text-blue-200 text-xs">
144
+ <i class="fas fa-ellipsis-h"></i>
145
+ </button>
146
+ </div>
147
+ </article>
148
+
149
+ <!-- Post 3 -->
150
+ <article class="post-card rounded-lg p-5 shadow-md hover:shadow-blue-500/10">
151
+ <div class="flex items-center mb-3">
152
+ <span class="bg-yellow-500 text-white text-xs font-semibold px-2 py-0.5 rounded">ANALYSIS</span>
153
+ <span class="text-slate-400 text-xs ml-2">April 2023</span>
154
+ </div>
155
+ <h3 class="font-semibold text-white mb-2">Navy Pilot Encounters</h3>
156
+ <p class="text-slate-300 text-sm mb-4">"The objects accelerated like nothing I've ever seen" - F/A-18 pilot describes 2004 Nimitz encounter in new interview.</p>
157
+ <div class="flex justify-between items-center">
158
+ <span class="text-xs text-slate-500">Source: Space.com</span>
159
+ <button class="text-blue-400 hover:text-blue-200 text-xs">
160
+ <i class="fas fa-ellipsis-h"></i>
161
+ </button>
162
+ </div>
163
+ </article>
164
+
165
+ <!-- Post 4 -->
166
+ <article class="post-card rounded-lg p-5 shadow-md hover:shadow-blue-500/10">
167
+ <div class="flex items-center mb-3">
168
+ <span class="bg-red-500 text-white text-xs font-semibold px-2 py-0.5 rounded">WARNING</span>
169
+ <span class="text-slate-400 text-xs ml-2">March 2023</span>
170
+ </div>
171
+ <h3 class="font-semibold text-white mb-2">UAP Flight Safety Concerns</h3>
172
+ <p class="text-slate-300 text-sm mb-4">FAA reports increase in near-misses with unidentified objects. New reporting procedures implemented for pilots.</p>
173
+ <div class="flex justify-between items-center">
174
+ <span class="text-xs text-slate-500">Source: Defense.gov</span>
175
+ <button class="text-blue-400 hover:text-blue-200 text-xs">
176
+ <i class="fas fa-ellipsis-h"></i>
177
+ </button>
178
+ </div>
179
+ </article>
180
+
181
+ <!-- Post 5 -->
182
+ <article class="post-card rounded-lg p-5 shadow-md hover:shadow-blue-500/10">
183
+ <div class="flex items-center mb-3">
184
+ <span class="bg-blue-500 text-white text-xs font-semibold px-2 py-0.5 rounded">REPORT</span>
185
+ <span class="text-slate-400 text-xs ml-2">February 2023</span>
186
+ </div>
187
+ <h3 class="font-semibold text-white mb-2">Global UAP Sightings Spike</h3>
188
+ <p class="text-slate-300 text-sm mb-4">NUFORC data shows 37% increase in credible reports since 2020. Most common shapes: spheres, triangles, cylinders.</p>
189
+ <div class="flex justify-between items-center">
190
+ <span class="text-xs text-slate-500">Source: NUFORC Stats</span>
191
+ <button class="text-blue-400 hover:text-blue-200 text-xs">
192
+ <i class="fas fa-ellipsis-h"></i>
193
+ </button>
194
+ </div>
195
+ </article>
196
+
197
+ <!-- Post 6 -->
198
+ <article class="post-card rounded-lg p-5 shadow-md hover:shadow-blue-500/10">
199
+ <div class="flex items-center mb-3">
200
+ <span class="bg-indigo-500 text-white text-xs font-semibold px-2 py-0.5 rounded">SCIENCE</span>
201
+ <span class="text-slate-400 text-xs ml-2">January 2023</span>
202
+ </div>
203
+ <h3 class="font-semibold text-white mb-2">New Analysis of 1967 Malmstrom Case</h3>
204
+ <p class="text-slate-300 text-sm mb-4">Researchers claim new evidence suggests UAP may have temporarily disabled nuclear missiles. Military records partially confirm.</p>
205
+ <div class="flex justify-between items-center">
206
+ <span class="text-xs text-slate-500">Source: Wikipedia/UAP</span>
207
+ <button class="text-blue-400 hover:text-blue-200 text-xs">
208
+ <i class="fas fa-ellipsis-h"></i>
209
+ </button>
210
+ </div>
211
+ </article>
212
+ </div>
213
+ </section>
214
+
215
+ <!-- Resources Section -->
216
+ <section class="mt-16">
217
+ <h2 class="text-xl font-semibold text-white mb-6 flex items-center">
218
+ <i class="fas fa-book-open text-blue-400 mr-2"></i> Official Resources
219
+ </h2>
220
+
221
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
222
+ <div class="bg-slate-800/50 rounded-lg p-5 border border-slate-700">
223
+ <h3 class="font-medium text-white mb-3 flex items-center">
224
+ <i class="fas fa-shield-alt text-blue-400 mr-2"></i> Defense Department
225
+ </h3>
226
+ <p class="text-slate-300 text-sm mb-4">Pentagon's official UAP Task Force reports and declassified documents.</p>
227
+ <span class="text-xs text-slate-500">Reference: Defense.gov/UAP</span>
228
+ </div>
229
+
230
+ <div class="bg-slate-800/50 rounded-lg p-5 border border-slate-700">
231
+ <h3 class="font-medium text-white mb-3 flex items-center">
232
+ <i class="fas fa-archive text-blue-400 mr-2"></i> National Archives
233
+ </h3>
234
+ <p class="text-slate-300 text-sm mb-4">Historical UAP records including Project Blue Book and other declassified materials.</p>
235
+ <span class="text-xs text-slate-500">Reference: Archives.gov/UAP</span>
236
+ </div>
237
+
238
+ <div class="bg-slate-800/50 rounded-lg p-5 border border-slate-700">
239
+ <h3 class="font-medium text-white mb-3 flex items-center">
240
+ <i class="fas fa-globe-americas text-blue-400 mr-2"></i> NUFORC
241
+ </h3>
242
+ <p class="text-slate-300 text-sm mb-4">Largest public database of UFO sightings with global reports since 1974.</p>
243
+ <span class="text-xs text-slate-500">Reference: NUFORC.org</span>
244
+ </div>
245
+
246
+ <div class="bg-slate-800/50 rounded-lg p-5 border border-slate-700">
247
+ <h3 class="font-medium text-white mb-3 flex items-center">
248
+ <i class="fas fa-rocket text-blue-400 mr-2"></i> Space.com
249
+ </h3>
250
+ <p class="text-slate-300 text-sm mb-4">Scientific analysis of UAP phenomena and space-related explanations.</p>
251
+ <span class="text-xs text-slate-500">Reference: Space.com/UFO</span>
252
+ </div>
253
+ </div>
254
+ </section>
255
+ </main>
256
+
257
+ <!-- Footer -->
258
+ <footer class="bg-slate-900 mt-16 py-8 border-t border-slate-800">
259
+ <div class="container mx-auto px-4">
260
+ <div class="flex flex-col md:flex-row justify-between items-center">
261
+ <div class="mb-4 md:mb-0">
262
+ <div class="flex items-center">
263
+ <i class="fas fa-ufo text-2xl text-blue-400 mr-2"></i>
264
+ <span class="text-xl font-bold text-white">UAP PULSE</span>
265
+ </div>
266
+ <p class="text-slate-400 text-sm mt-1">Concise updates on unidentified aerial phenomena</p>
267
+ </div>
268
+
269
+ <div class="flex space-x-6">
270
+ <a href="#" class="text-slate-400 hover:text-blue-300">
271
+ <i class="fab fa-twitter"></i>
272
+ </a>
273
+ <a href="#" class="text-slate-400 hover:text-blue-300">
274
+ <i class="fab fa-facebook"></i>
275
+ </a>
276
+ <a href="#" class="text-slate-400 hover:text-blue-300">
277
+ <i class="fab fa-reddit"></i>
278
+ </a>
279
+ <a href="#" class="text-slate-400 hover:text-blue-300">
280
+ <i class="fas fa-rss"></i>
281
+ </a>
282
+ </div>
283
+ </div>
284
+
285
+ <div class="border-t border-slate-800 mt-6 pt-6 flex flex-col md:flex-row justify-between items-center">
286
+ <p class="text-slate-500 text-sm mb-4 md:mb-0">© 2023 UAP Pulse. All rights reserved.</p>
287
+ <div class="flex space-x-4">
288
+ <a href="#" class="text-slate-400 hover:text-blue-300 text-sm">Privacy</a>
289
+ <a href="#" class="text-slate-400 hover:text-blue-300 text-sm">Terms</a>
290
+ <a href="#" class="text-slate-400 hover:text-blue-300 text-sm">Contact</a>
291
+ <a href="#" class="text-slate-400 hover:text-blue-300 text-sm">Submit Report</a>
292
+ </div>
293
+ </div>
294
+ </div>
295
+ </footer>
296
+
297
+ <!-- Floating Action Button -->
298
+ <button class="fixed bottom-6 right-6 bg-blue-600 hover:bg-blue-500 text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center transition-all">
299
+ <i class="fas fa-plus text-xl"></i>
300
+ </button>
301
+
302
+ <script>
303
+ // Simple animation for post cards on scroll
304
+ document.addEventListener('DOMContentLoaded', function() {
305
+ const posts = document.querySelectorAll('.post-card');
306
+
307
+ const observer = new IntersectionObserver((entries) => {
308
+ entries.forEach(entry => {
309
+ if (entry.isIntersecting) {
310
+ entry.target.style.opacity = '1';
311
+ entry.target.style.transform = 'translateY(0)';
312
+ }
313
+ });
314
+ }, { threshold: 0.1 });
315
+
316
+ posts.forEach((post, index) => {
317
+ post.style.opacity = '0';
318
+ post.style.transform = 'translateY(20px)';
319
+ post.style.transition = `opacity 0.5s ease ${index * 0.1}s, transform 0.5s ease ${index * 0.1}s`;
320
+ observer.observe(post);
321
+ });
322
+
323
+ // Typewriter effect for header
324
+ setTimeout(() => {
325
+ document.querySelector('.typewriter').style.borderRight = 'none';
326
+ }, 3500);
327
+ });
328
+ </script>
329
+ <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=privateuserh/uaphe-vbeta1-00" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
330
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Create a user friendly site news site for the UAP Phenomena the posts should be short structured like an SMS message sources include https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.space.com/ufos-uap-history-sightings-mysteries&ved=2ahUKEwj8t820weSMAxWYLEQIHbgSLCU4ChAWegQINBAB&usg=AOvVaw24SkrdrmkTEWgzdJmSBvCo https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://nuforc.org/&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoECEAQAQ&usg=AOvVaw1a844ErQ97vdCd3TvaoI3M https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://en.wikipedia.org/wiki/List_of_reported_UFO_sightings&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoFCIYBEAE&usg=AOvVaw0WOX5sdaurC3AidtGJt8cB https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.archives.gov/research/topics/uaps&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoFCIcBEAE&usg=AOvVaw1ocJHQllNsgcF933hCJUVJ https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://nuforc.org/&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoECEAQAQ&usg=AOvVaw1a844ErQ97vdCd3TvaoI3M https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.archives.gov/research/topics/uaps&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoFCIcBEAE&usg=AOvVaw1ocJHQllNsgcF933hCJUVJ https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.defense.gov/News/News-Stories/Article/Article/3965403/dod-examining-unidentified-anomalous-phenomena/&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoECHEQAQ&usg=AOvVaw1u36Wl5lmNH31UnHfcIVx5 https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://en.wikipedia.org/wiki/List_of_reported_UFO_sightings&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoFCIYBEAE&usg=AOvVaw0WOX5sdaurC3AidtGJt8cB and reference but not link to the following Resources https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.defense.gov/News/News-Stories/Article/Article/3965403/dod-examining-unidentified-anomalous-phenomena/&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoECHEQAQ&usg=AOvVaw1u36Wl5lmNH31UnHfcIVx5 https://www.google.com/url?sa=t&source=web&rct=j&opi=89978449&url=https://www.aaro.mil/&ved=2ahUKEwjL0Kz9wOSMAxW4le4BHflZNoIQFnoECD8QAQ&usg=AOvVaw2rM6dTgvtuADyDNqLe8RDD