wholebeing / index.html
SunnyRatnaniMD's picture
Add 2 files
7ca5682 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WholeBeing - Harmony of Life</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>
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 1s ease-out forwards;
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.gradient-bg {
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.life-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.nav-link::after {
content: '';
display: block;
width: 0;
height: 2px;
background: white;
transition: width .3s;
}
.nav-link:hover::after {
width: 100%;
}
.nav-highlight {
position: relative;
}
.nav-highlight::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background: white;
left: 0;
bottom: -5px;
}
.guide-card:hover .guide-social {
opacity: 1;
transform: translateY(0);
}
.interconnected {
position: relative;
}
.interconnected::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 2px dashed #4facfe;
border-radius: 50%;
animation: pulse 6s infinite linear;
opacity: 0.3;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 0.3; }
50% { transform: scale(1.05); opacity: 0.1; }
100% { transform: scale(1); opacity: 0.3; }
}
.earth-tone-bg {
background-color: #f5f0e8;
}
.nature-bg {
background-color: #e8f5e9;
}
.mind-bg {
background-color: #e3f2fd;
}
.body-bg {
background-color: #fff8e1;
}
.spirit-bg {
background-color: #f3e5f5;
}
.community-bg {
background-color: #e8f5e9;
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg fixed w-full z-50">
<div class="container mx-auto px-6 py-3 flex justify-between items-center">
<div class="flex items-center space-x-4">
<i class="fas fa-seedling text-2xl"></i>
<span class="text-xl font-bold">WholeBeing</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="nav-link nav-item" data-page="home">Home</a>
<a href="#" class="nav-link nav-item" data-page="practices">Practices</a>
<a href="#" class="nav-link nav-item" data-page="wisdom">Wisdom</a>
<a href="#" class="nav-link nav-item" data-page="guides">Guides</a>
<a href="#" class="nav-link nav-item" data-page="community">Community</a>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 rounded-full bg-white text-blue-500 font-semibold hover:bg-blue-50 transition">Sign In</button>
<button class="md:hidden text-white focus:outline-none" id="mobile-menu-btn">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-blue-700" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-blue-600 nav-item" data-page="home">Home</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-blue-600 nav-item" data-page="practices">Practices</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-blue-600 nav-item" data-page="wisdom">Wisdom</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-blue-600 nav-item" data-page="guides">Guides</a>
<a href="#" class="block px-3 py-2 rounded-md text-base font-medium text-white hover:bg-blue-600 nav-item" data-page="community">Community</a>
</div>
</div>
</nav>
<!-- Home Page -->
<div id="home-page" class="page-container active">
<!-- Hero Section -->
<section id="home" class="gradient-bg text-white pt-32 pb-20">
<div class="container mx-auto px-6 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-fade-in">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Harmony Within, Harmony Without</h1>
<p class="text-xl mb-8">Discover the interconnectedness of your inner world and outer environment through mindful living practices.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-3 rounded-full bg-white text-blue-500 font-semibold hover:bg-blue-50 transition transform hover:scale-105">Begin Journey</button>
<button class="px-8 py-3 rounded-full border-2 border-white text-white font-semibold hover:bg-white hover:text-blue-500 transition transform hover:scale-105">Watch Introduction</button>
</div>
</div>
<div class="md:w-1/2 animate-fade-in delay-100">
<img src="https://images.unsplash.com/photo-1497250681960-ef046c08a56e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Person meditating in nature" class="rounded-lg shadow-2xl">
</div>
</div>
</section>
<!-- Interconnectedness Section -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<div class="interconnected inline-block p-8 mb-6">
<i class="fas fa-infinity text-6xl text-blue-400"></i>
</div>
<h2 class="text-3xl font-bold mb-4">The Seamless Whole</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Your thoughts shape your environment, and your environment shapes your thoughts. We explore this sacred relationship.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-blue-50 p-8 rounded-xl text-center">
<div class="w-20 h-20 bg-blue-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-brain text-blue-500 text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Inner Landscape</h3>
<p class="text-gray-600">Cultivate mindfulness, emotional balance, and clarity of thought through contemplative practices.</p>
</div>
<div class="bg-green-50 p-8 rounded-xl text-center">
<div class="w-20 h-20 bg-green-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-leaf text-green-500 text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Living Environment</h3>
<p class="text-gray-600">Create harmonious spaces that nourish your being and reflect your inner state.</p>
</div>
<div class="bg-purple-50 p-8 rounded-xl text-center">
<div class="w-20 h-20 bg-purple-100 rounded-full flex items-center justify-center mx-auto mb-6">
<i class="fas fa-hands-helping text-purple-500 text-3xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Community Web</h3>
<p class="text-gray-600">Nurture relationships that support collective growth and mutual understanding.</p>
</div>
</div>
</div>
</section>
<!-- Practices Preview Section -->
<section class="py-20 earth-tone-bg">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4">Holistic Living Practices</h2>
<p class="text-gray-600 text-center max-w-2xl mx-auto mb-12">Daily rituals to align your inner and outer worlds</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Practice 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden life-card transition duration-300">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-cloud-moon text-6xl text-blue-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Morning Alignment</h3>
<p class="text-gray-600 mb-4">Start your day with intention through mindful movement, breathwork, and gratitude.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-clock mr-1"></i> 15-30 min</span>
<span class="text-sm text-gray-500"><i class="fas fa-calendar-alt mr-1"></i> Daily</span>
</div>
</div>
</div>
<!-- Practice 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden life-card transition duration-300">
<div class="h-48 bg-green-100 flex items-center justify-center">
<i class="fas fa-utensils text-6xl text-green-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Conscious Nourishment</h3>
<p class="text-gray-600 mb-4">Mindful eating practices that honor the connection between food, body, and earth.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-clock mr-1"></i> With meals</span>
<span class="text-sm text-gray-500"><i class="fas fa-calendar-alt mr-1"></i> 3x/day</span>
</div>
</div>
</div>
<!-- Practice 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden life-card transition duration-300">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-spa text-6xl text-purple-500"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Evening Integration</h3>
<p class="text-gray-600 mb-4">Reflect, release, and restore with journaling, gentle yoga, and meditation.</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500"><i class="fas fa-clock mr-1"></i> 20-45 min</span>
<span class="text-sm text-gray-500"><i class="fas fa-calendar-alt mr-1"></i> Daily</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-3 rounded-full gradient-bg text-white font-semibold hover:opacity-90 transition transform hover:scale-105 nav-item" data-page="practices">Explore All Practices</button>
</div>
</div>
</section>
<!-- Wisdom Section -->
<section class="py-20 nature-bg">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<img src="https://images.unsplash.com/photo-1506126613408-eca07ce68773?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1399&q=80" alt="Person in forest" class="rounded-lg shadow-xl">
</div>
<div class="md:w-1/2 md:pl-12">
<h2 class="text-3xl font-bold mb-6">Timeless Wisdom</h2>
<p class="text-gray-600 mb-6">Ancient traditions and modern science agree: we are not separate from our environment. The air we breathe, the water we drink, the food we eat - all become part of us, just as our thoughts and actions ripple outward to shape the world around us.</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 rounded-full p-3 mr-4">
<i class="fas fa-quote-left text-blue-500"></i>
</div>
<div>
<blockquote class="text-gray-600 italic mb-2">"As within, so without. As above, so below."</blockquote>
<p class="text-gray-500">— Hermes Trismegistus</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-green-100 rounded-full p-3 mr-4">
<i class="fas fa-quote-left text-green-500"></i>
</div>
<div>
<blockquote class="text-gray-600 italic mb-2">"We do not see nature with our eyes, but with our understandings and our hearts."</blockquote>
<p class="text-gray-500">— William Hazlitt</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section class="py-20 community-bg">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-4">Join Our Growing Community</h2>
<p class="text-gray-600 text-center max-w-2xl mx-auto mb-12">Thousands are rediscovering the sacred connection between self and world</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="Sarah J." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Maya T.</h4>
<div class="flex text-yellow-400">
<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>
</div>
<p class="text-gray-600">"The morning alignment practice transformed my relationship with time. I no longer rush through days - each moment feels sacred now."</p>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/45.jpg" alt="Michael T." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">James L.</h4>
<div class="flex text-yellow-400">
<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>
</div>
<p class="text-gray-600">"After practicing conscious eating, I developed a profound appreciation for the farmers who grow my food. My whole relationship with nourishment changed."</p>
</div>
<!-- Testimonial 3 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Lisa M." class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Priya K.</h4>
<div class="flex text-yellow-400">
<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>
</div>
<p class="text-gray-600">"The evening integration practice helped me process emotions I'd been carrying for years. I sleep better and wake up lighter."</p>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-3 rounded-full gradient-bg text-white font-semibold hover:opacity-90 transition transform hover:scale-105 nav-item" data-page="community">Connect With Others</button>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gray-900 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold mb-6">Ready to Live in Harmony?</h2>
<p class="text-xl mb-8 max-w-2xl mx-auto opacity-90">Join our community and begin your journey toward wholeness today.</p>
<button class="px-8 py-4 rounded-full gradient-bg text-white font-bold text-lg hover:opacity-90 transition transform hover:scale-105">Start Your Free 7-Day Journey</button>
</div>
</section>
</div>
<!-- Practices Page -->
<div id="practices-page" class="page-container">
<section class="gradient-bg text-white pt-32 pb-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Holistic Living Practices</h1>
<p class="text-xl max-w-2xl mx-auto">Daily rituals to nurture the connection between your inner and outer worlds</p>
</div>
</section>
<section class="py-20 earth-tone-bg">
<div class="container mx-auto px-6">
<div class="mb-12 flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<h2 class="text-3xl font-bold">All Practices</h2>
<p class="text-gray-600">Filter by category or time commitment</p>
</div>
<div class="flex space-x-4">
<select class="px-4 py-2 rounded-full border border-gray-300 bg-white focus:outline-none focus:ring-2 focus:ring-blue-500">
<option>All Categories</option>
<option>Mind</option>
<option>Body</option>
<option>Spirit</option>
<option>Environment</option>
<option>Community</option>
</select>
<select class="px-4 py-2 rounded-full border border-gray-300 bg-white focus:outline-none focus:ring-2 focus:ring-blue-500">
<option>Any Duration</option>
<option>Under 5 min</option>
<option>5-15 min</option>
<option>15-30 min</option>
<option>30+ min</option>
</select>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Mind Practice -->
<div class="bg-white rounded-xl shadow-md overflow-hidden life-card transition duration-300 hover:shadow-xl">
<div class="h-48 bg-blue-100 flex items-center justify-center relative">
<i class="fas fa-brain text-6xl text-blue-500"></i>
<div class="absolute bottom-0 left-0 bg-blue-500 text-white px-4 py-1 rounded-tr-lg">
<span class="text-sm font-semibold">Mind</span>
</div>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Morning Intention Setting</h3>
<p class="text-gray-600 mb-4">Begin your day with clarity by setting purposeful intentions that align with your values.</p>
<div class="flex justify-between items-center mb-4">
<span class="text-sm text-gray-500"><i class="fas fa-clock mr-1"></i> 5-10 min</span>
<span class="text-sm text-gray-500"><i class="fas fa-calendar-alt mr-1"></i> Daily</span>
</div>
<div class="flex items-center">
<span class="bg-blue-100 text-blue-800 text-xs font-semibold px-2.5 py-0.5 rounded">Beginner</span>
</div>
</div>
</div>
<!-- Body Practice -->
<div class="bg-white rounded-xl shadow-md overflow-hidden life-card transition duration-300 hover:shadow-xl">
<div class="h-48 bg-yellow-100 flex items-center justify-center relative">
</html>