alien-lens-chronicles / index.html
CommanderLazarus's picture
Create me a website dedicated to my photos of awesome alien and ufo photos. Give me the option to enter details about each piece, so that I may tell a story.
c3bb20b verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alien Lens Chronicles 👽📸</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/photo-card.js"></script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="text-center mb-12">
<h1 class="text-5xl font-bold mb-4 text-purple-500">Alien Lens Chronicles</h1>
<p class="text-xl text-gray-300 max-w-2xl mx-auto">Documenting the unexplained through the lens of curiosity</p>
</section>
<div class="flex justify-end mb-6">
<a href="add-photo.html" class="bg-purple-600 hover:bg-purple-700 text-white px-6 py-3 rounded-lg flex items-center gap-2 transition-colors">
<i data-feather="plus"></i>
<span>Add New Sighting</span>
</a>
</div>
<div id="gallery" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Photo cards will be inserted here by JavaScript -->
</div>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>
feather.replace();
// Load sample data on page load
document.addEventListener('DOMContentLoaded', () => {
loadGallery();
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>