Make me a functional website detailing NHI, UFOs, UAP, AARO, the Xfiles of the FBI, and all things extraterrestrial. Scrub the internet for information with Majestic clearance and below.
Browse files- README.md +8 -5
- components/feature-card.js +33 -0
- components/footer.js +58 -0
- components/navbar.js +99 -0
- components/news-card.js +45 -0
- index.html +158 -19
- script.js +39 -0
- style.css +40 -18
README.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
| 1 |
---
|
| 2 |
-
title: Cosmic Conspiracies Uncovered
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Cosmic Conspiracies Uncovered 👽
|
| 3 |
+
colorFrom: yellow
|
| 4 |
+
colorTo: purple
|
| 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://huggingface.co/deepsite).
|
components/feature-card.js
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFeatureCard extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
const icon = this.getAttribute('icon') || 'help-circle';
|
| 4 |
+
const title = this.getAttribute('title') || 'Feature';
|
| 5 |
+
const description = this.getAttribute('description') || 'Description not available';
|
| 6 |
+
|
| 7 |
+
this.attachShadow({ mode: 'open' });
|
| 8 |
+
this.shadowRoot.innerHTML = `
|
| 9 |
+
<style>
|
| 10 |
+
.feature-card {
|
| 11 |
+
transition: all 0.3s ease;
|
| 12 |
+
background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
|
| 13 |
+
}
|
| 14 |
+
.feature-card:hover {
|
| 15 |
+
transform: translateY(-5px);
|
| 16 |
+
box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.3);
|
| 17 |
+
}
|
| 18 |
+
.icon-wrapper {
|
| 19 |
+
background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
|
| 20 |
+
}
|
| 21 |
+
</style>
|
| 22 |
+
<div class="feature-card rounded-xl p-6 border border-gray-800 h-full">
|
| 23 |
+
<div class="icon-wrapper w-12 h-12 rounded-lg flex items-center justify-center mb-4">
|
| 24 |
+
<i data-feather="${icon}" class="text-blue-400"></i>
|
| 25 |
+
</div>
|
| 26 |
+
<h3 class="text-xl font-bold mb-2">${title}</h3>
|
| 27 |
+
<p class="text-gray-400">${description}</p>
|
| 28 |
+
</div>
|
| 29 |
+
`;
|
| 30 |
+
}
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
customElements.define('custom-feature-card', CustomFeatureCard);
|
components/footer.js
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomFooter extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
footer {
|
| 7 |
+
background-color: rgba(17, 24, 39, 0.8);
|
| 8 |
+
}
|
| 9 |
+
.footer-link:hover {
|
| 10 |
+
color: #3b82f6;
|
| 11 |
+
transform: translateX(4px);
|
| 12 |
+
}
|
| 13 |
+
.footer-link {
|
| 14 |
+
transition: all 0.3s ease;
|
| 15 |
+
}
|
| 16 |
+
</style>
|
| 17 |
+
<footer class="border-t border-gray-800">
|
| 18 |
+
<div class="container mx-auto px-4 py-12">
|
| 19 |
+
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 20 |
+
<div>
|
| 21 |
+
<h3 class="text-xl font-bold mb-4">Cosmic Conspiracies</h3>
|
| 22 |
+
<p class="text-gray-400">Investigating the unexplained since 2023. Dedicated to truth and transparency.</p>
|
| 23 |
+
</div>
|
| 24 |
+
<div>
|
| 25 |
+
<h4 class="font-bold mb-4">Resources</h4>
|
| 26 |
+
<ul class="space-y-2">
|
| 27 |
+
<li><a href="#" class="footer-link text-gray-400 flex items-center"><i data-feather="chevron-right" class="mr-1 w-4 h-4"></i> FOIA Requests</a></li>
|
| 28 |
+
<li><a href="#" class="footer-link text-gray-400 flex items-center"><i data-feather="chevron-right" class="mr-1 w-4 h-4"></i> Declassified Docs</a></li>
|
| 29 |
+
<li><a href="#" class="footer-link text-gray-400 flex items-center"><i data-feather="chevron-right" class="mr-1 w-4 h-4"></i> Reporting Guide</a></li>
|
| 30 |
+
</ul>
|
| 31 |
+
</div>
|
| 32 |
+
<div>
|
| 33 |
+
<h4 class="font-bold mb-4">Government Links</h4>
|
| 34 |
+
<ul class="space-y-2">
|
| 35 |
+
<li><a href="https://www.aaro.mil" class="footer-link text-gray-400 flex items-center"><i data-feather="external-link" class="mr-1 w-4 h-4"></i> AARO Official</a></li>
|
| 36 |
+
<li><a href="https://www.fbi.gov" class="footer-link text-gray-400 flex items-center"><i data-feather="external-link" class="mr-1 w-4 h-4"></i> FBI Vault</a></li>
|
| 37 |
+
<li><a href="https://www.nasa.gov" class="footer-link text-gray-400 flex items-center"><i data-feather="external-link" class="mr-1 w-4 h-4"></i> NASA UAP</a></li>
|
| 38 |
+
</ul>
|
| 39 |
+
</div>
|
| 40 |
+
<div>
|
| 41 |
+
<h4 class="font-bold mb-4">Connect</h4>
|
| 42 |
+
<div class="flex space-x-4">
|
| 43 |
+
<a href="#" class="text-gray-400 hover:text-blue-400"><i data-feather="twitter"></i></a>
|
| 44 |
+
<a href="#" class="text-gray-400 hover:text-blue-400"><i data-feather="youtube"></i></a>
|
| 45 |
+
<a href="#" class="text-gray-400 hover:text-blue-400"><i data-feather="github"></i></a>
|
| 46 |
+
<a href="#" class="text-gray-400 hover:text-blue-400"><i data-feather="mail"></i></a>
|
| 47 |
+
</div>
|
| 48 |
+
<p class="text-gray-500 text-sm mt-4">© 2023 Cosmic Conspiracies. All rights reserved.</p>
|
| 49 |
+
<p class="text-gray-600 text-xs mt-2">Disclaimer: This site aggregates publicly available information only.</p>
|
| 50 |
+
</div>
|
| 51 |
+
</div>
|
| 52 |
+
</div>
|
| 53 |
+
</footer>
|
| 54 |
+
`;
|
| 55 |
+
}
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
customElements.define('custom-footer', CustomFooter);
|
components/navbar.js
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNavbar extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
this.attachShadow({ mode: 'open' });
|
| 4 |
+
this.shadowRoot.innerHTML = `
|
| 5 |
+
<style>
|
| 6 |
+
nav {
|
| 7 |
+
background-color: rgba(17, 24, 39, 0.8);
|
| 8 |
+
backdrop-filter: blur(10px);
|
| 9 |
+
}
|
| 10 |
+
.nav-link {
|
| 11 |
+
position: relative;
|
| 12 |
+
}
|
| 13 |
+
.nav-link:after {
|
| 14 |
+
content: '';
|
| 15 |
+
position: absolute;
|
| 16 |
+
width: 0;
|
| 17 |
+
height: 2px;
|
| 18 |
+
bottom: -2px;
|
| 19 |
+
left: 0;
|
| 20 |
+
background-color: #3b82f6;
|
| 21 |
+
transition: width 0.3s ease;
|
| 22 |
+
}
|
| 23 |
+
.nav-link:hover:after {
|
| 24 |
+
width: 100%;
|
| 25 |
+
}
|
| 26 |
+
</style>
|
| 27 |
+
<nav class="fixed w-full z-50 border-b border-gray-800">
|
| 28 |
+
<div class="container mx-auto px-4">
|
| 29 |
+
<div class="flex justify-between items-center py-4">
|
| 30 |
+
<a href="/" class="flex items-center space-x-2">
|
| 31 |
+
<i data-feather="activity" class="text-blue-400"></i>
|
| 32 |
+
<span class="text-xl font-bold">CosmicConspiracies</span>
|
| 33 |
+
</a>
|
| 34 |
+
|
| 35 |
+
<div class="hidden md:flex items-center space-x-8">
|
| 36 |
+
<a href="#" class="nav-link">NHI Research</a>
|
| 37 |
+
<a href="#" class="nav-link">Declassified Docs</a>
|
| 38 |
+
<a href="#" class="nav-link">Sightings Map</a>
|
| 39 |
+
<a href="#" class="nav-link">Whistleblowers</a>
|
| 40 |
+
<button id="darkModeToggle" class="p-2 rounded-full hover:bg-gray-700">
|
| 41 |
+
<i data-feather="moon"></i>
|
| 42 |
+
</button>
|
| 43 |
+
</div>
|
| 44 |
+
|
| 45 |
+
<button class="md:hidden focus:outline-none" id="mobileMenuButton">
|
| 46 |
+
<i data-feather="menu"></i>
|
| 47 |
+
</button>
|
| 48 |
+
</div>
|
| 49 |
+
|
| 50 |
+
<!-- Mobile menu -->
|
| 51 |
+
<div class="md:hidden hidden py-4 border-t border-gray-800" id="mobileMenu">
|
| 52 |
+
<div class="flex flex-col space-y-4">
|
| 53 |
+
<a href="#" class="nav-link">NHI Research</a>
|
| 54 |
+
<a href="#" class="nav-link">Declassified Docs</a>
|
| 55 |
+
<a href="#" class="nav-link">Sightings Map</a>
|
| 56 |
+
<a href="#" class="nav-link">Whistleblowers</a>
|
| 57 |
+
<button id="darkModeToggleMobile" class="flex items-center space-x-2 p-2 rounded-lg hover:bg-gray-700 w-full">
|
| 58 |
+
<i data-feather="moon"></i>
|
| 59 |
+
<span>Toggle Dark Mode</span>
|
| 60 |
+
</button>
|
| 61 |
+
</div>
|
| 62 |
+
</div>
|
| 63 |
+
</div>
|
| 64 |
+
</nav>
|
| 65 |
+
`;
|
| 66 |
+
|
| 67 |
+
// Initialize mobile menu toggle
|
| 68 |
+
const mobileMenuButton = this.shadowRoot.getElementById('mobileMenuButton');
|
| 69 |
+
const mobileMenu = this.shadowRoot.getElementById('mobileMenu');
|
| 70 |
+
|
| 71 |
+
if (mobileMenuButton && mobileMenu) {
|
| 72 |
+
mobileMenuButton.addEventListener('click', () => {
|
| 73 |
+
const isHidden = mobileMenu.classList.contains('hidden');
|
| 74 |
+
if (isHidden) {
|
| 75 |
+
mobileMenu.classList.remove('hidden');
|
| 76 |
+
mobileMenuButton.innerHTML = `<i data-feather="x"></i>`;
|
| 77 |
+
} else {
|
| 78 |
+
mobileMenu.classList.add('hidden');
|
| 79 |
+
mobileMenuButton.innerHTML = `<i data-feather="menu"></i>`;
|
| 80 |
+
}
|
| 81 |
+
feather.replace();
|
| 82 |
+
});
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
// Initialize dark mode toggle
|
| 86 |
+
const darkModeToggle = this.shadowRoot.getElementById('darkModeToggle');
|
| 87 |
+
const darkModeToggleMobile = this.shadowRoot.getElementById('darkModeToggleMobile');
|
| 88 |
+
|
| 89 |
+
const toggleDarkMode = () => {
|
| 90 |
+
document.documentElement.classList.toggle('dark');
|
| 91 |
+
localStorage.setItem('darkMode', document.documentElement.classList.contains('dark'));
|
| 92 |
+
};
|
| 93 |
+
|
| 94 |
+
if (darkModeToggle) darkModeToggle.addEventListener('click', toggleDarkMode);
|
| 95 |
+
if (darkModeToggleMobile) darkModeToggleMobile.addEventListener('click', toggleDarkMode);
|
| 96 |
+
}
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
customElements.define('custom-navbar', CustomNavbar);
|
components/news-card.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
class CustomNewsCard extends HTMLElement {
|
| 2 |
+
connectedCallback() {
|
| 3 |
+
const image = this.getAttribute('image') || 'http://static.photos/abstract/640x360/1';
|
| 4 |
+
const title = this.getAttribute('title') || 'News Title';
|
| 5 |
+
const date = this.getAttribute('date') || 'Date not available';
|
| 6 |
+
const excerpt = this.getAttribute('excerpt') || 'Excerpt not available';
|
| 7 |
+
|
| 8 |
+
this.attachShadow({ mode: 'open' });
|
| 9 |
+
this.shadowRoot.innerHTML = `
|
| 10 |
+
<style>
|
| 11 |
+
.news-card {
|
| 12 |
+
transition: all 0.3s ease;
|
| 13 |
+
}
|
| 14 |
+
.news-card:hover {
|
| 15 |
+
transform: translateY(-5px);
|
| 16 |
+
box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.3);
|
| 17 |
+
}
|
| 18 |
+
.image-container {
|
| 19 |
+
height: 180px;
|
| 20 |
+
}
|
| 21 |
+
.news-image {
|
| 22 |
+
transition: transform 0.5s ease;
|
| 23 |
+
}
|
| 24 |
+
.news-card:hover .news-image {
|
| 25 |
+
transform: scale(1.05);
|
| 26 |
+
}
|
| 27 |
+
</style>
|
| 28 |
+
<div class="news-card bg-gray-800 rounded-xl overflow-hidden border border-gray-700 h-full flex flex-col">
|
| 29 |
+
<div class="image-container overflow-hidden">
|
| 30 |
+
<img src="${image}" alt="${title}" class="news-image w-full h-full object-cover">
|
| 31 |
+
</div>
|
| 32 |
+
<div class="p-6 flex-grow">
|
| 33 |
+
<div class="text-sm text-blue-400 mb-2">${date}</div>
|
| 34 |
+
<h3 class="text-xl font-bold mb-3">${title}</h3>
|
| 35 |
+
<p class="text-gray-400 mb-4">${excerpt}</p>
|
| 36 |
+
<a href="#" class="inline-flex items-center text-blue-400 hover:text-blue-300">
|
| 37 |
+
Read More <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
|
| 38 |
+
</a>
|
| 39 |
+
</div>
|
| 40 |
+
</div>
|
| 41 |
+
`;
|
| 42 |
+
}
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
customElements.define('custom-news-card', CustomNewsCard);
|
index.html
CHANGED
|
@@ -1,19 +1,158 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Cosmic Conspiracies Uncovered | NHI, UFOs & Government Secrets</title>
|
| 7 |
+
<link rel="stylesheet" href="style.css">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 10 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 11 |
+
<script src="components/navbar.js"></script>
|
| 12 |
+
<script src="components/footer.js"></script>
|
| 13 |
+
<script src="components/feature-card.js"></script>
|
| 14 |
+
<script src="components/news-card.js"></script>
|
| 15 |
+
</head>
|
| 16 |
+
<body class="bg-gray-900 text-gray-100 min-h-screen">
|
| 17 |
+
<custom-navbar></custom-navbar>
|
| 18 |
+
|
| 19 |
+
<main class="container mx-auto px-4 py-8">
|
| 20 |
+
<!-- Hero Section -->
|
| 21 |
+
<section class="relative h-96 rounded-xl overflow-hidden mb-12">
|
| 22 |
+
<div class="absolute inset-0 bg-gradient-to-r from-purple-900/80 to-blue-900/80"></div>
|
| 23 |
+
<img src="http://static.photos/space/1200x630/42" alt="UFO in space" class="w-full h-full object-cover">
|
| 24 |
+
<div class="absolute inset-0 flex flex-col justify-center items-center text-center px-4">
|
| 25 |
+
<h1 class="text-4xl md:text-6xl font-bold mb-4">The Truth Is Out There</h1>
|
| 26 |
+
<p class="text-xl md:text-2xl max-w-3xl mb-8">Declassified documents, whistleblower testimonies, and unexplained phenomena</p>
|
| 27 |
+
<a href="#reports" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">Explore Cases</a>
|
| 28 |
+
</div>
|
| 29 |
+
</section>
|
| 30 |
+
|
| 31 |
+
<!-- Key Topics -->
|
| 32 |
+
<section class="mb-16">
|
| 33 |
+
<h2 class="text-3xl font-bold mb-8 text-center">Government Programs & Agencies</h2>
|
| 34 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
| 35 |
+
<custom-feature-card
|
| 36 |
+
icon="eye"
|
| 37 |
+
title="AARO"
|
| 38 |
+
description="All-domain Anomaly Resolution Office - Pentagon's UFO investigation unit">
|
| 39 |
+
</custom-feature-card>
|
| 40 |
+
<custom-feature-card
|
| 41 |
+
icon="file-text"
|
| 42 |
+
title="X-Files"
|
| 43 |
+
description="FBI's declassified UFO documents spanning decades">
|
| 44 |
+
</custom-feature-card>
|
| 45 |
+
<custom-feature-card
|
| 46 |
+
icon="shield"
|
| 47 |
+
title="Majestic 12"
|
| 48 |
+
description="Alleged secret committee formed after Roswell incident">
|
| 49 |
+
</custom-feature-card>
|
| 50 |
+
<custom-feature-card
|
| 51 |
+
icon="activity"
|
| 52 |
+
title="NHI"
|
| 53 |
+
description="Non-Human Intelligence - The new terminology for UFO phenomena">
|
| 54 |
+
</custom-feature-card>
|
| 55 |
+
</div>
|
| 56 |
+
</section>
|
| 57 |
+
|
| 58 |
+
<!-- Recent Reports -->
|
| 59 |
+
<section id="reports" class="mb-16">
|
| 60 |
+
<div class="flex justify-between items-center mb-8">
|
| 61 |
+
<h2 class="text-3xl font-bold">Recent Declassified Reports</h2>
|
| 62 |
+
<a href="#" class="text-blue-400 hover:text-blue-300 flex items-center">
|
| 63 |
+
View All <i data-feather="chevron-right" class="ml-1"></i>
|
| 64 |
+
</a>
|
| 65 |
+
</div>
|
| 66 |
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
| 67 |
+
<custom-news-card
|
| 68 |
+
image="http://static.photos/technology/640x360/1"
|
| 69 |
+
title="Pentagon UFO Report 2023"
|
| 70 |
+
date="June 2023"
|
| 71 |
+
excerpt="The latest AARO report reveals 510 UFO sightings with no conventional explanation">
|
| 72 |
+
</custom-news-card>
|
| 73 |
+
<custom-news-card
|
| 74 |
+
image="http://static.photos/aerial/640x360/2"
|
| 75 |
+
title="FBI Vault Update"
|
| 76 |
+
date="April 2023"
|
| 77 |
+
excerpt="New batch of declassified documents released through FOIA requests">
|
| 78 |
+
</custom-news-card>
|
| 79 |
+
<custom-news-card
|
| 80 |
+
image="http://static.photos/science/640x360/3"
|
| 81 |
+
title="Congressional Hearing"
|
| 82 |
+
date="February 2023"
|
| 83 |
+
excerpt="Whistleblower testimonies about reverse-engineering programs">
|
| 84 |
+
</custom-news-card>
|
| 85 |
+
</div>
|
| 86 |
+
</section>
|
| 87 |
+
|
| 88 |
+
<!-- Timeline Section -->
|
| 89 |
+
<section class="mb-16">
|
| 90 |
+
<h2 class="text-3xl font-bold mb-8">UFO Timeline</h2>
|
| 91 |
+
<div class="relative">
|
| 92 |
+
<div class="absolute left-1/2 w-1 h-full bg-blue-800 transform -translate-x-1/2"></div>
|
| 93 |
+
|
| 94 |
+
<div class="mb-8 flex justify-between items-center w-full right-timeline">
|
| 95 |
+
<div class="order-1 w-5/12"></div>
|
| 96 |
+
<div class="z-20 flex items-center order-1 bg-blue-600 shadow-xl w-8 h-8 rounded-full"></div>
|
| 97 |
+
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-5/12 px-6 py-4">
|
| 98 |
+
<h3 class="font-bold text-lg mb-1">1947 - Roswell Incident</h3>
|
| 99 |
+
<p class="text-sm">The crash that started it all. Official explanation: weather balloon.</p>
|
| 100 |
+
</div>
|
| 101 |
+
</div>
|
| 102 |
+
|
| 103 |
+
<div class="mb-8 flex justify-between items-center w-full left-timeline">
|
| 104 |
+
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-5/12 px-6 py-4">
|
| 105 |
+
<h3 class="font-bold text-lg mb-1">1952 - Washington D.C. Flyover</h3>
|
| 106 |
+
<p class="text-sm">Multiple UFOs tracked on radar over the White House.</p>
|
| 107 |
+
</div>
|
| 108 |
+
<div class="z-20 flex items-center order-1 bg-blue-600 shadow-xl w-8 h-8 rounded-full"></div>
|
| 109 |
+
<div class="order-1 w-5/12"></div>
|
| 110 |
+
</div>
|
| 111 |
+
|
| 112 |
+
<div class="mb-8 flex justify-between items-center w-full right-timeline">
|
| 113 |
+
<div class="order-1 w-5/12"></div>
|
| 114 |
+
<div class="z-20 flex items-center order-1 bg-blue-600 shadow-xl w-8 h-8 rounded-full"></div>
|
| 115 |
+
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-5/12 px-6 py-4">
|
| 116 |
+
<h3 class="font-bold text-lg mb-1">2004 - Nimitz Encounter</h3>
|
| 117 |
+
<p class="text-sm">Navy pilots track UFO with advanced capabilities off California coast.</p>
|
| 118 |
+
</div>
|
| 119 |
+
</div>
|
| 120 |
+
|
| 121 |
+
<div class="mb-8 flex justify-between items-center w-full left-timeline">
|
| 122 |
+
<div class="order-1 bg-gray-800 rounded-lg shadow-xl w-5/12 px-6 py-4">
|
| 123 |
+
<h3 class="font-bold text-lg mb-1">2020 - Pentagon Releases Videos</h3>
|
| 124 |
+
<p class="text-sm">Official confirmation of previously leaked UFO footage.</p>
|
| 125 |
+
</div>
|
| 126 |
+
<div class="z-20 flex items-center order-1 bg-blue-600 shadow-xl w-8 h-8 rounded-full"></div>
|
| 127 |
+
<div class="order-1 w-5/12"></div>
|
| 128 |
+
</div>
|
| 129 |
+
</div>
|
| 130 |
+
</section>
|
| 131 |
+
|
| 132 |
+
<!-- Whistleblower Section -->
|
| 133 |
+
<section class="bg-gray-800 rounded-xl p-8 mb-16">
|
| 134 |
+
<div class="flex flex-col md:flex-row items-center">
|
| 135 |
+
<div class="md:w-1/3 mb-6 md:mb-0">
|
| 136 |
+
<img src="http://static.photos/people/640x360/4" alt="Whistleblower" class="rounded-lg w-full max-w-xs mx-auto">
|
| 137 |
+
</div>
|
| 138 |
+
<div class="md:w-2/3 md:pl-8">
|
| 139 |
+
<h2 class="text-3xl font-bold mb-4">Whistleblower Protection</h2>
|
| 140 |
+
<p class="text-lg mb-4">Recent legislation has created new protections for government employees and contractors to come forward with information about UAP programs without fear of retaliation.</p>
|
| 141 |
+
<div class="flex flex-wrap gap-4">
|
| 142 |
+
<a href="#" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-lg font-medium transition duration-300">Submit Report</a>
|
| 143 |
+
<a href="#" class="border border-blue-600 text-blue-400 hover:bg-blue-900/50 px-6 py-2 rounded-lg font-medium transition duration-300">Learn More</a>
|
| 144 |
+
</div>
|
| 145 |
+
</div>
|
| 146 |
+
</div>
|
| 147 |
+
</section>
|
| 148 |
+
</main>
|
| 149 |
+
|
| 150 |
+
<custom-footer></custom-footer>
|
| 151 |
+
|
| 152 |
+
<script>
|
| 153 |
+
feather.replace();
|
| 154 |
+
</script>
|
| 155 |
+
<script src="script.js"></script>
|
| 156 |
+
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
|
| 157 |
+
</body>
|
| 158 |
+
</html>
|
script.js
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// Initialize tooltips
|
| 2 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 3 |
+
// Initialize any tooltips or popovers
|
| 4 |
+
const tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'));
|
| 5 |
+
tooltipTriggerList.map(function (tooltipTriggerEl) {
|
| 6 |
+
return new bootstrap.Tooltip(tooltipTriggerEl);
|
| 7 |
+
});
|
| 8 |
+
|
| 9 |
+
// Dark mode toggle functionality
|
| 10 |
+
const darkModeToggle = document.getElementById('darkModeToggle');
|
| 11 |
+
if (darkModeToggle) {
|
| 12 |
+
darkModeToggle.addEventListener('click', function() {
|
| 13 |
+
document.documentElement.classList.toggle('dark');
|
| 14 |
+
localStorage.setItem('darkMode', document.documentElement.classList.contains('dark'));
|
| 15 |
+
});
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
// Check for saved dark mode preference
|
| 19 |
+
if (localStorage.getItem('darkMode') === 'true') {
|
| 20 |
+
document.documentElement.classList.add('dark');
|
| 21 |
+
} else if (localStorage.getItem('darkMode') === 'false') {
|
| 22 |
+
document.documentElement.classList.remove('dark');
|
| 23 |
+
}
|
| 24 |
+
});
|
| 25 |
+
|
| 26 |
+
// API fetch for UFO sightings data
|
| 27 |
+
async function fetchUFOSightings() {
|
| 28 |
+
try {
|
| 29 |
+
const response = await fetch('https://data.nasa.gov/resource/gh4g-9sfh.json?$limit=5');
|
| 30 |
+
const data = await response.json();
|
| 31 |
+
console.log('UFO sightings data:', data);
|
| 32 |
+
// Process and display data here
|
| 33 |
+
} catch (error) {
|
| 34 |
+
console.error('Error fetching UFO sightings:', error);
|
| 35 |
+
}
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
// Call the function when the page loads
|
| 39 |
+
window.addEventListener('load', fetchUFOSightings);
|
style.css
CHANGED
|
@@ -1,28 +1,50 @@
|
|
|
|
|
|
|
|
| 1 |
body {
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
margin-top: 0;
|
| 9 |
}
|
| 10 |
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
}
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
}
|
| 25 |
|
| 26 |
-
|
| 27 |
-
|
| 28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
|
| 2 |
+
|
| 3 |
body {
|
| 4 |
+
font-family: 'Space Grotesk', sans-serif;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
/* Timeline styles */
|
| 8 |
+
.left-timeline {
|
| 9 |
+
flex-direction: row-reverse;
|
| 10 |
}
|
| 11 |
|
| 12 |
+
.right-timeline .order-1 {
|
| 13 |
+
text-align: right;
|
|
|
|
| 14 |
}
|
| 15 |
|
| 16 |
+
@media (max-width: 768px) {
|
| 17 |
+
.left-timeline, .right-timeline {
|
| 18 |
+
flex-direction: column;
|
| 19 |
+
}
|
| 20 |
+
|
| 21 |
+
.left-timeline .order-1,
|
| 22 |
+
.right-timeline .order-1 {
|
| 23 |
+
width: 100%;
|
| 24 |
+
text-align: left;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.left-timeline .order-1,
|
| 28 |
+
.right-timeline .order-1 {
|
| 29 |
+
margin-top: 1rem;
|
| 30 |
+
margin-bottom: 1rem;
|
| 31 |
+
}
|
| 32 |
}
|
| 33 |
|
| 34 |
+
/* Custom scrollbar */
|
| 35 |
+
::-webkit-scrollbar {
|
| 36 |
+
width: 8px;
|
|
|
|
|
|
|
|
|
|
| 37 |
}
|
| 38 |
|
| 39 |
+
::-webkit-scrollbar-track {
|
| 40 |
+
background: #1a202c;
|
| 41 |
}
|
| 42 |
+
|
| 43 |
+
::-webkit-scrollbar-thumb {
|
| 44 |
+
background: #4a5568;
|
| 45 |
+
border-radius: 4px;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
::-webkit-scrollbar-thumb:hover {
|
| 49 |
+
background: #718096;
|
| 50 |
+
}
|