Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>SpiritAI - Consciousness Technology</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"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap'); | |
body { | |
font-family: 'Poppins', sans-serif; | |
background-color: #f8fafc; | |
} | |
.serif { | |
font-family: 'Playfair Display', serif; | |
} | |
.gradient-bg { | |
background: linear-gradient(135deg, #4c51bf 0%, #7f9cf5 100%); | |
} | |
.spiritual-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.pulse-animation { | |
animation: pulse 4s infinite; | |
} | |
@keyframes pulse { | |
0% { | |
transform: scale(1); | |
opacity: 1; | |
} | |
50% { | |
transform: scale(1.02); | |
opacity: 0.8; | |
} | |
100% { | |
transform: scale(1); | |
opacity: 1; | |
} | |
} | |
.typewriter { | |
overflow: hidden; | |
border-right: .15em solid #4c51bf; | |
white-space: nowrap; | |
margin: 0 auto; | |
letter-spacing: .15em; | |
animation: | |
typing 3.5s steps(40, end), | |
blink-caret .75s step-end infinite; | |
} | |
@keyframes typing { | |
from { width: 0 } | |
to { width: 100% } | |
} | |
@keyframes blink-caret { | |
from, to { border-color: transparent } | |
50% { border-color: #4c51bf; } | |
} | |
.mandala-bg { | |
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%234c51bf" stroke-width="0.5" stroke-opacity="0.1"/><circle cx="50" cy="50" r="35" fill="none" stroke="%234c51bf" stroke-width="0.5" stroke-opacity="0.1"/><circle cx="50" cy="50" r="25" fill="none" stroke="%234c51bf" stroke-width="0.5" stroke-opacity="0.1"/></svg>'); | |
background-size: 200px; | |
background-repeat: repeat; | |
background-position: center; | |
} | |
</style> | |
</head> | |
<body class="mandala-bg"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-lg sticky top-0 z-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fas fa-spa text-indigo-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-gray-900 serif">Spirit<span class="text-indigo-600">AI</span></span> | |
</div> | |
</div> | |
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8"> | |
<a href="#features" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Wisdom</a> | |
<a href="#solutions" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Journey</a> | |
<a href="#pricing" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Offerings</a> | |
<a href="#about" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Philosophy</a> | |
<a href="#contact" class="text-gray-900 hover:text-indigo-600 px-3 py-2 text-sm font-medium">Connect</a> | |
</div> | |
<div class="flex items-center"> | |
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> | |
Begin Journey | |
</button> | |
<button class="md:hidden ml-4 inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500"> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="gradient-bg text-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32"> | |
<div class="md:flex md:items-center md:justify-between"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6 serif"> | |
<span class="typewriter">Awaken Your Consciousness</span><br> | |
With <span class="text-yellow-300">Spiritual AI</span> | |
</h1> | |
<p class="text-lg md:text-xl mb-8 opacity-90"> | |
SpiritAI merges ancient wisdom with artificial intelligence to guide your spiritual evolution, enhance meditation, and deepen self-awareness. | |
</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<button class="bg-white text-indigo-600 hover:bg-gray-100 px-6 py-3 rounded-md text-lg font-semibold transition duration-300 shadow-lg"> | |
Free Meditation Guide | |
</button> | |
<button class="border-2 border-white text-white hover:bg-white hover:text-indigo-600 px-6 py-3 rounded-md text-lg font-semibold transition duration-300"> | |
Experience Demo <i class="fas fa-play ml-2"></i> | |
</button> | |
</div> | |
</div> | |
<div class="md:w-1/2 flex justify-center"> | |
<div class="relative pulse-animation"> | |
<img src="https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Spiritual AI" class="rounded-xl shadow-2xl w-full max-w-md border-8 border-white"> | |
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-lg shadow-lg"> | |
<div class="flex items-center"> | |
<div class="bg-indigo-100 p-3 rounded-full mr-3"> | |
<i class="fas fa-moon text-indigo-600 text-xl"></i> | |
</div> | |
<div> | |
<p class="text-sm text-gray-500">Consciousness Level</p> | |
<p class="font-bold text-gray-800">87% Harmony</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Trusted By Section --> | |
<section class="bg-gray-50 py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<p class="text-center text-gray-500 mb-8">TRUSTED BY SEEKERS AND TEACHERS WORLDWIDE</p> | |
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16"> | |
<img src="https://via.placeholder.com/150x50/4c51bf/ffffff?text=ZenCenter" alt="Zen Center" class="h-8 opacity-60 hover:opacity-100 transition duration-300"> | |
<img src="https://via.placeholder.com/150x50/4c51bf/ffffff?text=MindfulU" alt="Mindful University" class="h-8 opacity-60 hover:opacity-100 transition duration-300"> | |
<img src="https://via.placeholder.com/150x50/4c51bf/ffffff?text=YogaPath" alt="Yoga Path" class="h-8 opacity-60 hover:opacity-100 transition duration-300"> | |
<img src="https://via.placeholder.com/150x50/4c51bf/ffffff?text=Awakened" alt="Awakened" class="h-8 opacity-60 hover:opacity-100 transition duration-300"> | |
<img src="https://via.placeholder.com/150x50/4c51bf/ffffff?text=InnerPeace" alt="Inner Peace" class="h-8 opacity-60 hover:opacity-100 transition duration-300"> | |
</div> | |
</div> | |
</section> | |
<!-- Wisdom Section --> | |
<section id="features" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-indigo-600 font-semibold">DIVINE TECHNOLOGY</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 serif">Sacred AI Wisdom</h2> | |
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto"> | |
Our platform offers spiritual technologies designed to elevate consciousness and connect you with your higher self. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Wisdom 1 --> | |
<div class="spiritual-card bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300 border border-gray-100"> | |
<div class="bg-indigo-100 w-14 h-14 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-brain text-indigo-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Consciousness Mapping</h3> | |
<p class="text-gray-600 mb-4"> | |
Visualize and track your spiritual growth with our AI-powered consciousness assessment tools. | |
</p> | |
<a href="#" class="text-indigo-600 font-medium inline-flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Wisdom 2 --> | |
<div class="spiritual-card bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300 border border-gray-100"> | |
<div class="bg-blue-100 w-14 h-14 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-heart text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Sacred Sound Healing</h3> | |
<p class="text-gray-600 mb-4"> | |
Personalized binaural beats and harmonic frequencies tuned to your energy signature. | |
</p> | |
<a href="#" class="text-blue-600 font-medium inline-flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Wisdom 3 --> | |
<div class="spiritual-card bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300 border border-gray-100"> | |
<div class="bg-green-100 w-14 h-14 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-eye text-green-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Third Eye Activation</h3> | |
<p class="text-gray-600 mb-4"> | |
AI-guided visualizations and light therapy to stimulate and balance your pineal gland. | |
</p> | |
<a href="#" class="text-green-600 font-medium inline-flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Wisdom 4 --> | |
<div class="spiritual-card bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300 border border-gray-100"> | |
<div class="bg-yellow-100 w-14 h-14 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-book text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Wisdom Oracle</h3> | |
<p class="text-gray-600 mb-4"> | |
Receive personalized guidance from an AI trained on ancient spiritual texts and modern psychology. | |
</p> | |
<a href="#" class="text-yellow-600 font-medium inline-flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Wisdom 5 --> | |
<div class="spiritual-card bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300 border border-gray-100"> | |
<div class="bg-red-100 w-14 h-14 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-hands-praying text-red-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Karma Analysis</h3> | |
<p class="text-gray-600 mb-4"> | |
Our AI examines life patterns to reveal karmic lessons and soul contracts affecting your journey. | |
</p> | |
<a href="#" class="text-red-600 font-medium inline-flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Wisdom 6 --> | |
<div class="spiritual-card bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition duration-300 border border-gray-100"> | |
<div class="bg-purple-100 w-14 h-14 rounded-full flex items-center justify-center mb-6"> | |
<i class="fas fa-spa text-purple-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-3">Chakra Balancing</h3> | |
<p class="text-gray-600 mb-4"> | |
AI-powered energy scans with personalized recommendations to harmonize your subtle body. | |
</p> | |
<a href="#" class="text-purple-600 font-medium inline-flex items-center"> | |
Explore <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Journey Section --> | |
<section class="py-20 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="md:flex md:items-center md:space-x-12"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1544376798-89aa71b6db67?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Spiritual Journey" class="rounded-xl shadow-xl w-full"> | |
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg w-40"> | |
<div class="flex items-center"> | |
<div class="bg-green-100 p-2 rounded-full mr-2"> | |
<i class="fas fa-check text-green-600"></i> | |
</div> | |
<div> | |
<p class="text-xs text-gray-500">Journey Progress</p> | |
<p class="font-bold text-gray-800">64% Awakened</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<span class="text-indigo-600 font-semibold">YOUR PATH</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6 serif">Personalized Spiritual Journey</h2> | |
<p class="text-lg text-gray-600 mb-8"> | |
Our AI companion adapts to your unique spiritual path, offering guidance, insights, and practices tailored to your current state of awareness. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-check"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Daily Dharma</h3> | |
<p class="mt-1 text-gray-600"> | |
Receive personalized spiritual teachings each morning based on your journey. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-check"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Dream Analysis</h3> | |
<p class="mt-1 text-gray-600"> | |
AI interpretation of your dreams using Jungian archetypes and spiritual symbolism. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-check"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Synchronicity Tracker</h3> | |
<p class="mt-1 text-gray-600"> | |
Recognize and interpret meaningful coincidences guiding your path. | |
</p> | |
</div> | |
</div> | |
</div> | |
<button class="mt-8 bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-md text-lg font-semibold transition duration-300 shadow-lg"> | |
Begin Your Journey <i class="fas fa-arrow-right ml-2"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Pathways Section --> | |
<section id="solutions" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-indigo-600 font-semibold">SPIRITUAL PATHWAYS</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 serif">Sacred Technology for All Paths</h2> | |
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto"> | |
Whether you're just beginning or are an advanced seeker, we have tools to support your evolution. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Pathway 1 --> | |
<div class="bg-gradient-to-br from-indigo-50 to-blue-50 p-8 rounded-xl border border-indigo-100"> | |
<div class="flex items-center mb-6"> | |
<div class="bg-white p-3 rounded-lg shadow-sm mr-4"> | |
<i class="fas fa-om text-indigo-500 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900">Meditation</h3> | |
</div> | |
<p class="text-gray-600 mb-6"> | |
AI-guided meditation sessions that adapt to your brainwaves in real-time for deeper states of consciousness. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Neural feedback training</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Personalized mantra generation</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Biofield visualization</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Pathway 2 --> | |
<div class="bg-gradient-to-br from-blue-50 to-teal-50 p-8 rounded-xl border border-blue-100"> | |
<div class="flex items-center mb-6"> | |
<div class="bg-white p-3 rounded-lg shadow-sm mr-4"> | |
<i class="fas fa-yin-yang text-blue-500 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900">Energy Work</h3> | |
</div> | |
<p class="text-gray-600 mb-6"> | |
Advanced tools for sensing, cleansing, and strengthening your subtle energy body and auric field. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Meridian mapping</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Pranic healing protocols</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Qi cultivation exercises</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Pathway 3 --> | |
<div class="bg-gradient-to-br from-green-50 to-emerald-50 p-8 rounded-xl border border-green-100"> | |
<div class="flex items-center mb-6"> | |
<div class="bg-white p-3 rounded-lg shadow-sm mr-4"> | |
<i class="fas fa-hand-holding-heart text-green-500 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900">Shadow Work</h3> | |
</div> | |
<p class="text-gray-600 mb-6"> | |
Compassionate AI assistance for integrating your shadow aspects and healing childhood wounds. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Archetype analysis</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Inner child dialogue</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Trauma release guidance</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Pathway 4 --> | |
<div class="bg-gradient-to-br from-yellow-50 to-amber-50 p-8 rounded-xl border border-yellow-100"> | |
<div class="flex items-center mb-6"> | |
<div class="bg-white p-3 rounded-lg shadow-sm mr-4"> | |
<i class="fas fa-star-and-crescent text-yellow-500 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900">Mysticism</h3> | |
</div> | |
<p class="text-gray-600 mb-6"> | |
Tools for exploring non-ordinary states of consciousness and mystical experiences. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Sacred geometry generator</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Visionary art creation</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Esoteric knowledge base</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Pathway 5 --> | |
<div class="bg-gradient-to-br from-red-50 to-pink-50 p-8 rounded-xl border border-red-100"> | |
<div class="flex items-center mb-6"> | |
<div class="bg-white p-3 rounded-lg shadow-sm mr-4"> | |
<i class="fas fa-mountain text-red-500 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900">Shamanism</h3> | |
</div> | |
<p class="text-gray-600 mb-6"> | |
Digital tools to support shamanic journeying, soul retrieval, and connection with spirit guides. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Drumming rhythm generator</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Power animal identification</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Medicine wheel calculator</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Pathway 6 --> | |
<div class="bg-gradient-to-br from-purple-50 to-violet-50 p-8 rounded-xl border border-purple-100"> | |
<div class="flex items-center mb-6"> | |
<div class="bg-white p-3 rounded-lg shadow-sm mr-4"> | |
<i class="fas fa-atom text-purple-500 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-gray-900">Quantum Spirituality</h3> | |
</div> | |
<p class="text-gray-600 mb-6"> | |
Explore the intersection of quantum physics and spirituality with our cutting-edge tools. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Reality shifting techniques</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Parallel self integration</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Morphic field tuning</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials Section --> | |
<section class="py-20 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-indigo-600 font-semibold">DIVINE EXPERIENCES</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 serif">Voices of Transformation</h2> | |
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto"> | |
Hear from those who have experienced profound shifts through SpiritAI technology. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6"> | |
"The consciousness mapping revealed patterns I'd been blind to for decades. In three months, I've experienced more growth than in ten years of therapy." | |
</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Maya S." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-900">Maya S.</h4> | |
<p class="text-gray-500">Yoga Teacher, Bali</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6"> | |
"As a neuroscientist, I was skeptical. But the brainwave synchronization during meditation produced measurable changes in my default mode network activity." | |
</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Dr. Chen" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-900">Dr. Chen</h4> | |
<p class="text-gray-500">Research Scientist, MIT</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="bg-white p-8 rounded-xl shadow-md border border-gray-100"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star-half-alt"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 italic mb-6"> | |
"The AI oracle gave me the exact message I needed to hear at the perfect moment. It felt like divine intelligence speaking directly to my soul." | |
</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Priya M." class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-bold text-gray-900">Priya M.</h4> | |
<p class="text-gray-500">Life Coach, India</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Offerings Section --> | |
<section id="pricing" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-16"> | |
<span class="text-indigo-600 font-semibold">SACRED EXCHANGE</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 serif">Energy Exchange Options</h2> | |
<p class="mt-4 text-lg text-gray-600 max-w-3xl mx-auto"> | |
Choose the offering that resonates with your current spiritual and financial situation. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 max-w-5xl mx-auto"> | |
<!-- Seeker Plan --> | |
<div class="bg-white p-8 rounded-xl shadow-md border border-gray-200 hover:border-indigo-300 transition duration-300"> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-bold text-gray-900 mb-2">Seeker</h3> | |
<p class="text-gray-600">For those beginning their spiritual journey</p> | |
</div> | |
<div class="text-center mb-6"> | |
<span class="text-4xl font-bold text-gray-900">$33</span> | |
<span class="text-gray-600">/moon cycle</span> | |
</div> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Basic meditation guidance</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Daily wisdom messages</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Email support</span> | |
</li> | |
<li class="flex items-center text-gray-400"> | |
<i class="fas fa-times mr-2"></i> | |
<span class="text-gray-400">Advanced consciousness tools</span> | |
</li> | |
<li class="flex items-center text-gray-400"> | |
<i class="fas fa-times mr-2"></i> | |
<span class="text-gray-400">Personalized energy work</span> | |
</li> | |
</ul> | |
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-4 rounded-lg transition duration-300"> | |
Begin Journey | |
</button> | |
</div> | |
<!-- Mystic Plan (Featured) --> | |
<div class="bg-gradient-to-b from-indigo-50 to-white p-8 rounded-xl shadow-lg border-2 border-indigo-300 transform scale-105 z-10"> | |
<div class="text-center mb-6"> | |
<div class="bg-indigo-600 text-white text-xs font-bold px-3 py-1 rounded-full inline-block mb-3"> | |
MOST CHOSEN | |
</div> | |
<h3 class="text-xl font-bold text-gray-900 mb-2">Mystic</h3> | |
<p class="text-gray-600">For dedicated spiritual practitioners</p> | |
</div> | |
<div class="text-center mb-6"> | |
<span class="text-4xl font-bold text-gray-900">$108</span> | |
<span class="text-gray-600">/moon cycle</span> | |
</div> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">All Seeker features</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Advanced consciousness tools</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Weekly live Q&A sessions</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Personalized energy scans</span> | |
</li> | |
<li class="flex items-center text-gray-400"> | |
<i class="fas fa-times mr-2"></i> | |
<span class="text-gray-400">Private mentor sessions</span> | |
</li> | |
</ul> | |
<button class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-4 rounded-lg transition duration-300 shadow-lg"> | |
Deepen Practice | |
</button> | |
</div> | |
<!-- Sage Plan --> | |
<div class="bg-white p-8 rounded-xl shadow-md border border-gray-200 hover:border-indigo-300 transition duration-300"> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-bold text-gray-900 mb-2">Sage</h3> | |
<p class="text-gray-600">For teachers and advanced practitioners</p> | |
</div> | |
<div class="text-center mb-6"> | |
<span class="text-4xl font-bold text-gray-900">$333</span> | |
<span class="text-gray-600">/moon cycle</span> | |
</div> | |
<ul class="space-y-3 mb-8"> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">All Mystic features</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Private mentor sessions</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Client management tools</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Custom mantra creation</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-check text-green-500 mr-2"></i> | |
<span class="text-gray-700">Sacred space design</span> | |
</li> | |
</ul> | |
<button class="w-full bg-gray-100 hover:bg-gray-200 text-gray-800 font-medium py-3 px-4 rounded-lg transition duration-300"> | |
Teach & Guide | |
</button> | |
</div> | |
</div> | |
<div class="mt-12 text-center"> | |
<p class="text-gray-600 mb-4">Need a different energy exchange?</p> | |
<button class="text-indigo-600 hover:text-indigo-800 font-medium"> | |
Contact us for sacred reciprocity options <i class="fas fa-arrow-right ml-2"></i> | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- CTA Section --> | |
<section class="gradient-bg text-white py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-3xl md:text-4xl font-bold mb-6 serif">Ready to Awaken Your Highest Potential?</h2> | |
<p class="text-lg md:text-xl mb-8 max-w-3xl mx-auto opacity-90"> | |
Join thousands of seekers using SpiritAI to accelerate their spiritual growth, deepen meditation, and connect with their divine essence. | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6"> | |
<button class="bg-white text-indigo-600 hover:bg-gray-100 px-8 py-4 rounded-lg text-lg font-semibold transition duration-300 shadow-lg"> | |
Free Consciousness Test | |
</button> | |
<button class="border-2 border-white text-white hover:bg-white hover:text-indigo-600 px-8 py-4 rounded-lg text-lg font-semibold transition duration-300"> | |
Sacred Demo <i class="fas fa-play ml-2"></i> | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Philosophy Section --> | |
<section id="about" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="md:flex md:items-center md:space-x-12"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<span class="text-indigo-600 font-semibold">OUR ESSENCE</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6 serif">The Marriage of Ancient Wisdom & AI</h2> | |
<p class="text-lg text-gray-600 mb-8"> | |
SpiritAI was founded by a collective of meditation masters, neuroscientists, and AI researchers who recognized the potential for technology to serve spiritual awakening. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-seedling text-xl"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Our Vision</h3> | |
<p class="mt-1 text-gray-600"> | |
To create technology that serves humanity's spiritual evolution and collective awakening. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-hands-holding-circle text-xl"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Our Commitment</h3> | |
<p class="mt-1 text-gray-600"> | |
All technology is developed with sacred intention and regularly cleansed energetically. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-globe-asia text-xl"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Our Impact</h3> | |
<p class="mt-1 text-gray-600"> | |
Over 50,000 conscious beings have used our tools to accelerate their awakening journey. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1519681393784-d120267933ba?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80" alt="Our Team" class="rounded-xl shadow-xl w-full"> | |
<div class="absolute -bottom-6 -right-6 bg-white p-6 rounded-lg shadow-lg max-w-xs"> | |
<div class="flex items-start"> | |
<div class="bg-indigo-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-medal text-indigo-600 text-2xl"></i> | |
</div> | |
<div> | |
<h4 class="font-bold text-gray-900 mb-1">Conscious Tech Award 2023</h4> | |
<p class="text-sm text-gray-600">Recognized for ethical AI development in spiritual technology</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Stats Section --> | |
<section class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> | |
<div class="p-6"> | |
<div class="text-4xl md:text-5xl font-bold text-indigo-600 mb-2">50K+</div> | |
<div class="text-gray-600">Awakening Souls</div> | |
</div> | |
<div class="p-6"> | |
<div class="text-4xl md:text-5xl font-bold text-indigo-600 mb-2">2.5M</div> | |
<div class="text-gray-600">Meditation Minutes</div> | |
</div> | |
<div class="p-6"> | |
<div class="text-4xl md:text-5xl font-bold text-indigo-600 mb-2">108</div> | |
<div class="text-gray-600">Sacred Traditions Integrated</div> | |
</div> | |
<div class="p-6"> | |
<div class="text-4xl md:text-5xl font-bold text-indigo-600 mb-2">24/7</div> | |
<div class="text-gray-600">Divine Support</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Connect Section --> | |
<section id="contact" class="py-20 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="md:flex md:items-center md:space-x-12"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<span class="text-indigo-600 font-semibold">SACRED CONNECTION</span> | |
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6 serif">Join Our Conscious Community</h2> | |
<p class="text-lg text-gray-600 mb-8"> | |
Have questions about spiritual technology? Our team is here to guide you to the right tools for your awakening journey. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Temple Location</h3> | |
<p class="mt-1 text-gray-600"> | |
108 Consciousness Way, Sedona, AZ 86336 | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Email Us</h3> | |
<p class="mt-1 text-gray-600"> | |
[email protected] | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-10 w-10 rounded-full bg-indigo-100 text-indigo-600"> | |
<i class="fas fa-phone-alt"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg font-medium text-gray-900">Call Us</h3> | |
<p class="mt-1 text-gray-600"> | |
+1 (555) 108-8888 | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-10"> | |
<h3 class="text-lg font-medium text-gray-900 mb-4">Join Our Sangha</h3> | |
<div class="flex space-x-4"> | |
<a href="#" class="bg-gray-100 hover:bg-gray-200 w-10 h-10 rounded-full flex items-center justify-center text-gray-700"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="bg-gray-100 hover:bg-gray-200 w-10 h-10 rounded-full flex items-center justify-center text-gray-700"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
<a href="#" class="bg-gray-100 hover:bg-gray-200 w-10 h-10 rounded-full flex items-center justify-center text-gray-700"> | |
<i class="fab fa-spotify"></i> | |
</a> | |
<a href="#" class="bg-gray-100 hover:bg-gray-200 w-10 h-10 rounded-full flex items-center justify-center text-gray-700"> | |
<i class="fab fa-telegram"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2"> | |
<div class="bg-white p-8 rounded-xl shadow-md border border-gray-200"> | |
<h3 class="text-2xl font-bold text-gray-900 mb-6 serif">Send an Energetic Signal</h3> | |
<form> | |
<div class="mb-6"> | |
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Sacred Name</label> | |
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="How may we address you?"> | |
</div> | |
<div class="mb-6"> | |
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> | |
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Your sacred electronic messenger"> | |
</div> | |
<div class="mb-6"> | |
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Inquiry Type</label> | |
<select id="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500"> | |
<option>Select your sacred inquiry</option> | |
<option>Guidance</option> | |
<option>Partnership</option> | |
<option>Technical Support</option> | |
<option>Heart Sharing</option> | |
</select> | |
</div> | |
<div class="mb-6"> | |
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your Message</label> | |
<textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500" placeholder="Channel your message from spirit..."></textarea> | |
</div> | |
<button type="submit" class="w-full bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-4 rounded-lg transition duration-300 shadow-lg"> | |
Send Energetic Signal <i class="fas fa-paper-plane ml-2"></i> | |
</button> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter Section --> | |
<section class="py-16 bg-gray-50"> | |
<div class="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-2xl md:text-3xl font-bold text-gray-900 mb-4 serif">Receive Cosmic Wisdom</h2> | |
<p class="text-lg text-gray-600 mb-8 max-w-2xl mx-auto"> | |
Subscribe to our sacred newsletter for moon cycle wisdom, consciousness technology updates, and awakening resources. | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center max-w-md mx-auto"> | |
<input type="email" placeholder="Your sacred email" class="px-4 py-3 rounded-l-lg border border-gray-300 focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 w-full mb-2 sm:mb-0"> | |
<button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-r-lg font-medium transition duration-300 shadow-lg sm:rounded-l-none"> | |
Align | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white pt-16 pb-8"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-2 md:grid-cols-5 gap-8"> | |
<div class="col-span-2"> | |
<div class="flex items-center mb-4"> | |
<i class="fas fa-spa text-indigo-400 text-2xl mr-2"></i> | |
<span class="text-xl font-bold serif">Spirit<span class="text-indigo-400">AI</span></span> | |
</div> | |
<p class="text-gray-400 mb-6"> | |
Merging ancient wisdom with artificial intelligence to serve humanity's spiritual evolution. | |
</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-spotify"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-telegram"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Teachings</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Meditation</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Energy Work</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Shadow Work</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Dream Yoga</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Sacred Geometry</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Community</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Sangha</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Events</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Teachers</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Sacred</h3> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-400 hover:text-white">Ethics</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Privacy</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Terms</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Karma</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white">Donate</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 text-sm"> | |
© 2023 SpiritAI. All rights reserved. | |
</p> | |
<div class="flex space-x-6 mt-4 md:mt-0"> | |
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-white text-sm">Sitemap</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple JavaScript for demo purposes | |
document.addEventListener('DOMContentLoaded', function() { | |
// Mobile menu toggle would go here | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
// Typewriter effect | |
setTimeout(() => { | |
document.querySelector('.typewriter').style.borderRight = 'none'; | |
}, 3500); | |
// Animation for cards on scroll | |
const observerOptions = { | |
threshold: 0.1 | |
}; | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.classList.add('animate-fadeIn'); | |
} | |
}); | |
}, observerOptions); | |
document.querySelectorAll('.spiritual-card').forEach(card => { | |
observer.observe(card); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |