omen / index.html
charlie
populate backend to 100 percent completion - Follow Up Deployment
c16b086 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Omen - Spiritual Meaning Finder</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Quicksand:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
mystic: {
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8b5cf6',
600: '#7c3aed',
700: '#6d28d9',
800: '#5b21b6',
900: '#4c1d95',
},
midnight: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
twilight: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
}
},
fontFamily: {
serif: ['Cinzel', 'serif'],
sans: ['Quicksand', 'sans-serif']
}
}
}
}
</script>
<style>
body {
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
min-height: 100vh;
color: #e2e8f0;
}
.mystic-bg {
background: radial-gradient(circle at top right, rgba(123, 31, 162, 0.2) 0%, rgba(30, 41, 59, 0.8) 50%);
}
.card-glow {
box-shadow: 0 0 20px rgba(123, 31, 162, 0.3);
}
.symbol-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.symbol-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(123, 31, 162, 0.4);
}
.floating {
animation: float 6s ease-in-out infinite;
}
.floating-2 {
animation: float 8s ease-in-out infinite;
animation-delay: 1s;
}
.floating-3 {
animation: float 7s ease-in-out infinite;
animation-delay: 2s;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.constellation {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
overflow: hidden;
}
.star {
position: absolute;
background-color: white;
border-radius: 50%;
opacity: 0.6;
}
.mystic-input:focus {
box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.5);
}
.interpretation-card {
background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
backdrop-filter: blur(10px);
border: 1px solid rgba(124, 58, 237, 0.3);
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}
.tab-active {
border-bottom: 2px solid #8b5cf6;
color: #8b5cf6;
}
.fade-in {
animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
</head>
<body class="font-sans">
<!-- Constellation Background -->
<div class="constellation" id="constellation"></div>
<!-- Header -->
<header class="mystic-bg py-6 px-4 sm:px-8 border-b border-mystic-800">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-3">
<div class="bg-mystic-600 p-2 rounded-full">
<i class="fas fa-feather-alt text-xl text-mystic-200"></i>
</div>
<h1 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-200">Omen</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Meanings</a>
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Symbols</a>
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Community</a>
<a href="#" class="text-mystic-300 hover:text-mystic-100 transition">Journal</a>
</nav>
<div class="flex items-center space-x-4">
<button class="bg-mystic-700 hover:bg-mystic-600 text-mystic-100 px-4 py-2 rounded-lg transition">
<i class="fas fa-user mr-2"></i>Sign In
</button>
<button class="md:hidden text-mystic-300">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="py-12 px-4 sm:px-8 relative overflow-hidden">
<div class="max-w-4xl mx-auto text-center">
<div class="floating mx-auto w-24 h-24 rounded-full bg-mystic-800 flex items-center justify-center mb-6">
<i class="fas fa-dove text-4xl text-mystic-400"></i>
</div>
<h2 class="text-3xl sm:text-5xl font-serif font-bold text-mystic-100 mb-6">
Decode the Universe's Messages
</h2>
<p class="text-lg text-mystic-300 mb-10 max-w-2xl mx-auto">
Enter your symbolic experience and receive layered spiritual interpretations based on cultural symbolism, location, and belief systems.
</p>
<!-- Input Form -->
<div class="bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 md:p-8 card-glow">
<div class="mb-6">
<label class="block text-mystic-300 text-left mb-2">Describe your experience:</label>
<textarea
id="experience-input"
class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-4 text-mystic-100 focus:outline-none focus:border-mystic-500 transition"
rows="3"
placeholder="I saw a crow at 4:44 during a thunderstorm..."></textarea>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-6">
<div>
<label class="block text-mystic-300 text-left mb-2">Location:</label>
<input
type="text"
class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-2 text-mystic-100 focus:outline-none focus:border-mystic-500 transition"
placeholder="City or region">
</div>
<div>
<label class="block text-mystic-300 text-left mb-2">Belief System:</label>
<select class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-2 text-mystic-100 focus:outline-none focus:border-mystic-500 transition">
<option>Any</option>
<option>Native American</option>
<option>Celtic</option>
<option>Hindu</option>
<option>Buddhist</option>
<option>Norse</option>
<option>Christian</option>
<option>Islamic</option>
</select>
</div>
<div>
<label class="block text-mystic-300 text-left mb-2">Context:</label>
<select class="w-full mystic-input bg-mystic-900/70 border border-mystic-700 rounded-lg p-2 text-mystic-100 focus:outline-none focus:border-mystic-500 transition">
<option>Dream</option>
<option>Meditation</option>
<option>Daily Life</option>
<option>Ritual</option>
<option>Nature</option>
</select>
</div>
</div>
<button id="interpret-btn" class="w-full bg-gradient-to-r from-mystic-600 to-mystic-800 hover:from-mystic-500 hover:to-mystic-700 text-mystic-100 font-bold py-3 px-6 rounded-lg transition transform hover:scale-[1.02]">
<i class="fas fa-crystal mr-2"></i>Interpret Symbolism
</button>
</div>
</div>
</section>
<!-- Interpretation Results -->
<section class="py-12 px-4 sm:px-8" id="results-section" style="display: none;">
<div class="max-w-4xl mx-auto">
<div class="text-center mb-12">
<h3 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-100 mb-2">Symbolic Interpretation</h3>
<p class="text-mystic-400">Based on your experience: <span id="experience-summary" class="text-mystic-300 italic">"I saw a crow at 4:44 during a thunderstorm"</span></p>
</div>
<div class="interpretation-card rounded-xl p-6 mb-8 fade-in">
<div class="flex items-center mb-4">
<div class="bg-mystic-700 p-3 rounded-full mr-4">
<i class="fas fa-crow text-xl text-mystic-300"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100">Crow Symbolism</h4>
</div>
<div class="mb-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Transformation</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Magic</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Divine Messages</span>
</div>
<p class="text-mystic-300 mb-4">
Crows are often seen as messengers between the physical and spiritual worlds. In many traditions, they symbolize transformation, change, and the magic of creation.
</p>
<div class="bg-mystic-800/50 p-4 rounded-lg mb-4">
<h5 class="font-bold text-mystic-200 mb-2 flex items-center">
<i class="fas fa-globe-americas mr-2 text-mystic-400"></i> Cultural Perspectives
</h5>
<ul class="text-mystic-400 text-sm pl-5 list-disc">
<li><span class="text-mystic-300">Native American:</span> Crow is a keeper of sacred law and a shape-shifter</li>
<li><span class="text-mystic-300">Celtic:</span> Associated with warfare and death, but also prophetic knowledge</li>
<li><span class="text-mystic-300">Hindu:</span> Crows are considered ancestors bringing messages</li>
</ul>
</div>
</div>
</div>
<div class="interpretation-card rounded-xl p-6 mb-8 fade-in">
<div class="flex items-center mb-4">
<div class="bg-mystic-700 p-3 rounded-full mr-4">
<i class="fas fa-bolt text-xl text-mystic-300"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100">Thunderstorm Context</h4>
</div>
<div class="mb-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Purification</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Power</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Emotional Release</span>
</div>
<p class="text-mystic-300 mb-4">
Thunderstorms represent the powerful forces of nature and the divine. They often symbolize purification, emotional release, and the clearing of obstacles. The combination of crow and storm suggests a powerful spiritual transformation is occurring.
</p>
</div>
</div>
<div class="interpretation-card rounded-xl p-6 mb-8 fade-in">
<div class="flex items-center mb-4">
<div class="bg-mystic-700 p-3 rounded-full mr-4">
<i class="fas fa-clock text-xl text-mystic-300"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100">4:44 Significance</h4>
</div>
<div class="mb-6">
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Angel Numbers</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Stability</span>
<span class="bg-mystic-800 text-mystic-300 px-3 py-1 rounded-full text-sm">Divine Protection</span>
</div>
<p class="text-mystic-300 mb-4">
In numerology, 444 is considered an angel number signifying that you are surrounded by divine protection and guidance. It often appears when you are on the right path and your spiritual guides are supporting you.
</p>
<div class="bg-mystic-800/50 p-4 rounded-lg">
<h5 class="font-bold text-mystic-200 mb-2 flex items-center">
<i class="fas fa-lightbulb mr-2 text-mystic-400"></i> Overall Interpretation
</h5>
<p class="text-mystic-300">
This powerful combination suggests you are undergoing a significant spiritual transformation. The universe is sending you clear signs that you are protected and guided during this period of change. Pay attention to intuitive messages and trust the process of transformation unfolding in your life.
</p>
</div>
</div>
</div>
<div class="flex justify-center mt-8">
<button id="new-interpretation" class="bg-mystic-700 hover:bg-mystic-600 text-mystic-100 px-6 py-3 rounded-lg transition flex items-center">
<i class="fas fa-redo mr-2"></i> New Interpretation
</button>
</div>
</div>
</section>
<!-- Symbol Library -->
<section class="py-12 px-4 sm:px-8 bg-mystic-900/30">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h3 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-100 mb-2">Explore Symbolic Meanings</h3>
<p class="text-mystic-400">Discover interpretations from our community database</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-6">
<!-- Symbol Cards -->
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-feather text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Feather</h4>
<p class="text-mystic-400 text-sm text-center">Spiritual evolution, ascension, truth</p>
</div>
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-moon text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Full Moon</h4>
<p class="text-mystic-400 text-sm text-center">Completion, illumination, intuition</p>
</div>
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-water text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Flowing Water</h4>
<p class="text-mystic-400 text-sm text-center">Emotional release, purification, life flow</p>
</div>
<div class="symbol-card bg-mystic-800/50 backdrop-blur-sm rounded-xl p-6 border border-mystic-700">
<div class="flex justify-center mb-4">
<div class="bg-mystic-700 p-4 rounded-full">
<i class="fas fa-dragon text-2xl text-mystic-300"></i>
</div>
</div>
<h4 class="text-lg font-serif text-mystic-100 text-center mb-2">Dragon</h4>
<p class="text-mystic-400 text-sm text-center">Power, transformation, hidden knowledge</p>
</div>
</div>
<div class="text-center mt-10">
<button class="bg-mystic-700 hover:bg-mystic-600 text-mystic-100 px-6 py-3 rounded-lg transition">
Explore All Symbols <i class="fas fa-arrow-right ml-2"></i>
</button>
</div>
</div>
</section>
<!-- Features -->
<section class="py-12 px-4 sm:px-8">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-12">
<h3 class="text-2xl sm:text-3xl font-serif font-bold text-mystic-100 mb-2">Your Spiritual Journey Companion</h3>
<p class="text-mystic-400">Features designed to deepen your symbolic understanding</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="text-center">
<div class="floating-2 mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-book-open text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Personal Journal</h4>
<p class="text-mystic-400">Track your symbolic experiences and personal interpretations over time</p>
</div>
<div class="text-center">
<div class="floating mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-users text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Community Wisdom</h4>
<p class="text-mystic-400">Contribute to and learn from our moderated database of symbolic meanings</p>
</div>
<div class="text-center">
<div class="floating-3 mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-filter text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Belief Filters</h4>
<p class="text-mystic-400">Customize interpretations based on specific cultural or spiritual traditions</p>
</div>
<div class="text-center">
<div class="floating-2 mx-auto w-16 h-16 rounded-full bg-mystic-800 flex items-center justify-center mb-4">
<i class="fas fa-mobile-alt text-2xl text-mystic-400"></i>
</div>
<h4 class="text-xl font-serif text-mystic-100 mb-3">Mobile Experience</h4>
<p class="text-mystic-400">Access spiritual guidance anytime, anywhere with our responsive design</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-12 px-4 sm:px-8 border-t border-mystic-800">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-3 mb-4">
<div class="bg-mystic-600 p-2 rounded-full">
<i class="fas fa-feather-alt text-mystic-200"></i>
</div>
<h3 class="text-xl font-serif font-bold text-mystic-100">Omen</h3>
</div>
<p class="text-mystic-400 mb-4">
Decoding spiritual symbolism through cultural wisdom and community insights.
</p>
<div class="flex space-x-4">
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-facebook-f"></i></a>
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-instagram"></i></a>
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-pinterest"></i></a>
<a href="#" class="text-mystic-500 hover:text-mystic-300"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-serif text-mystic-100 mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Symbol Dictionary</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Cultural Guides</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Spiritual Traditions</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Blog & Articles</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-serif text-mystic-100 mb-4">Community</h4>
<ul class="space-y-2">
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Contribute Meanings</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Discussion Forums</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Events & Gatherings</a></li>
<li><a href="#" class="text-mystic-400 hover:text-mystic-200">Moderation Guidelines</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-serif text-mystic-100 mb-4">Subscribe</h4>
<p class="text-mystic-400 mb-4">Receive spiritual insights and updates</p>
<div class="flex">
<input type="email" placeholder="Your email" class="bg-mystic-800/50 border border-mystic-700 rounded-l-lg p-2 text-mystic-100 w-full focus:outline-none">
<button class="bg-mystic-600 hover:bg-mystic-500 text-mystic-100 px-4 rounded-r-lg">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="border-t border-mystic-800 mt-12 pt-8 text-center text-mystic-500">
<p>&copy; 2023 Omen Spiritual Meaning App. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Create constellation effect
function createConstellation() {
const container = document.getElementById('constellation');
const starsCount = 150;
for (let i = 0; i < starsCount; i++) {
const star = document.createElement('div');
star.classList.add('star');
// Random position
const posX = Math.random() * 100;
const posY = Math.random() * 100;
star.style.left = `${posX}%`;
star.style.top = `${posY}%`;
// Random size
const size = Math.random() * 2;
star.style.width = `${size}px`;
star.style.height = `${size}px`;
// Random opacity
const opacity = Math.random() * 0.8 + 0.2;
star.style.opacity = opacity;
// Random twinkle animation
const duration = Math.random() * 5 + 3;
star.style.animation = `twinkle ${duration}s infinite alternate`;
container.appendChild(star);
}
}
// Handle form submission
document.getElementById('interpret-btn').addEventListener('click', function() {
const experience = document.getElementById('experience-input').value || "I saw a crow at 4:44 during a thunderstorm";
document.getElementById('experience-summary').textContent = `"${experience}"`;
// Show results section
document.getElementById('results-section').style.display = 'block';
// Scroll to results
document.getElementById('results-section').scrollIntoView({ behavior: 'smooth' });
// Add fade-in animations to interpretation cards
const cards = document.querySelectorAll('.interpretation-card');
cards.forEach((card, index) => {
card.classList.add('fade-in');
card.style.animationDelay = `${index * 0.2}s`;
});
});
// Handle new interpretation
document.getElementById('new-interpretation').addEventListener('click', function() {
document.getElementById('results-section').style.display = 'none';
document.getElementById('experience-input').value = '';
document.getElementById('experience-input').focus();
});
// Initialize constellation on load
document.addEventListener('DOMContentLoaded', function() {
createConstellation();
});
</script>
<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://deepsite.hf.co/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://deepsite.hf.co" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://deepsite.hf.co?remix=drainch/omen" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>