rmdycu / index.html
Its3sticks's picture
Add 2 files
edc5e8c verified
raw
history blame contribute delete
33.7 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Celestial Herbs - TCM Herbal Selector</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=Noto+Serif+SC:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');
body {
font-family: 'Playfair Display', serif;
background-color: #f8f5f0;
color: #333;
}
.chinese-font {
font-family: 'Noto Serif SC', serif;
}
.hero-gradient {
background: linear-gradient(135deg, #e8d8b0 0%, #d4b483 100%);
}
.herb-card {
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.herb-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.calendar-day {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
}
.calendar-day.active {
background-color: #8b5a2b;
color: white;
}
.astrology-chart {
background: radial-gradient(circle, #f8f5f0 0%, #e8d8b0 100%);
}
.pill-toggle {
background-color: #e8d8b0;
}
.pill-toggle.active {
background-color: #8b5a2b;
color: white;
}
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, #8b5a2b, transparent);
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white bg-opacity-90 backdrop-blur-sm py-4 px-6 shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-full bg-amber-800 flex items-center justify-center text-white">
<i class="fas fa-leaf"></i>
</div>
<span class="text-xl font-semibold text-amber-900">Celestial Herbs</span>
</div>
<div class="hidden md:flex space-x-8">
<a href="#" class="text-amber-900 hover:text-amber-700 transition">Herbs</a>
<a href="#" class="text-amber-900 hover:text-amber-700 transition">Calendar</a>
<a href="#" class="text-amber-900 hover:text-amber-700 transition">Diagnosis</a>
<a href="#" class="text-amber-900 hover:text-amber-700 transition">About</a>
</div>
<button class="md:hidden text-amber-900">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient py-20 px-6">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold text-amber-900 mb-6">Traditional Chinese Herbal Wisdom</h1>
<p class="text-xl text-amber-800 max-w-3xl mx-auto mb-8">
Discover the ancient harmony between celestial cycles and herbal medicine. Select herbs aligned with your constitution and the cosmic rhythms.
</p>
<div class="flex flex-col md:flex-row justify-center gap-4 max-w-2xl mx-auto">
<input type="text" placeholder="Search herbs..." class="px-6 py-3 rounded-full border border-amber-200 focus:outline-none focus:ring-2 focus:ring-amber-500">
<button class="bg-amber-800 hover:bg-amber-700 text-white px-8 py-3 rounded-full transition">
<i class="fas fa-search mr-2"></i> Find Herbs
</button>
</div>
</div>
</section>
<!-- Main Content -->
<div class="max-w-7xl mx-auto px-6 py-12">
<!-- Toggle between Herbs and Calendar -->
<div class="flex justify-center mb-12">
<div class="inline-flex rounded-full p-1 bg-amber-100">
<button class="pill-toggle active px-6 py-2 rounded-full transition">Herbal Selector</button>
<button class="pill-toggle px-6 py-2 rounded-full transition">Polestar Calendar</button>
</div>
</div>
<!-- Herbal Selector Section -->
<section class="herbal-selector">
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-12">
<!-- Filter Options -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<h3 class="text-xl font-semibold text-amber-900 mb-4">Filter Herbs</h3>
<div class="mb-6">
<h4 class="font-medium text-amber-800 mb-2">Organ Systems</h4>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Liver
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Heart
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Spleen
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Lung
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Kidney
</label>
</div>
</div>
<div class="mb-6">
<h4 class="font-medium text-amber-800 mb-2">Herb Nature</h4>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Cold
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Cool
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Neutral
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Warm
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Hot
</label>
</div>
</div>
<div>
<h4 class="font-medium text-amber-800 mb-2">Herb Taste</h4>
<div class="space-y-2">
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Bitter
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Sweet
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Pungent
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Salty
</label>
<label class="flex items-center">
<input type="checkbox" class="mr-2 rounded text-amber-600"> Sour
</label>
</div>
</div>
</div>
<!-- Herb Results -->
<div class="md:col-span-3">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Herb Card 1 -->
<div class="herb-card bg-white rounded-lg overflow-hidden">
<div class="h-48 bg-amber-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-amber-600"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-amber-900">Ginseng <span class="chinese-font">人参</span></h3>
<span class="text-xs bg-amber-100 text-amber-800 px-2 py-1 rounded">Warm</span>
</div>
<p class="text-sm text-gray-600 mb-4">Sweet, slightly bitter; enters Spleen, Lung, Heart</p>
<p class="text-sm mb-4">Tonifies Qi, strengthens the Spleen and Lungs, promotes body fluids, calms the spirit.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-amber-700">Best in: Spring</span>
<button class="text-amber-700 hover:text-amber-900 text-sm font-medium">
View Details <i class="fas fa-arrow-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- Herb Card 2 -->
<div class="herb-card bg-white rounded-lg overflow-hidden">
<div class="h-48 bg-green-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-green-600"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-amber-900">Astragalus <span class="chinese-font">黄芪</span></h3>
<span class="text-xs bg-green-100 text-green-800 px-2 py-1 rounded">Warm</span>
</div>
<p class="text-sm text-gray-600 mb-4">Sweet; enters Spleen, Lung</p>
<p class="text-sm mb-4">Tonifies Qi, raises Yang, strengthens the defensive Qi, promotes urination.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-amber-700">Best in: Late Summer</span>
<button class="text-amber-700 hover:text-amber-900 text-sm font-medium">
View Details <i class="fas fa-arrow-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- Herb Card 3 -->
<div class="herb-card bg-white rounded-lg overflow-hidden">
<div class="h-48 bg-blue-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-blue-600"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-amber-900">Rehmannia <span class="chinese-font">地黄</span></h3>
<span class="text-xs bg-blue-100 text-blue-800 px-2 py-1 rounded">Cool</span>
</div>
<p class="text-sm text-gray-600 mb-4">Sweet, bitter; enters Liver, Kidney, Heart</p>
<p class="text-sm mb-4">Nourishes Yin, clears heat, cools blood, nourishes Kidney essence.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-amber-700">Best in: Winter</span>
<button class="text-amber-700 hover:text-amber-900 text-sm font-medium">
View Details <i class="fas fa-arrow-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- Herb Card 4 -->
<div class="herb-card bg-white rounded-lg overflow-hidden">
<div class="h-48 bg-red-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-red-600"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-amber-900">Cinnamon <span class="chinese-font">肉桂</span></h3>
<span class="text-xs bg-red-100 text-red-800 px-2 py-1 rounded">Hot</span>
</div>
<p class="text-sm text-gray-600 mb-4">Pungent, sweet; enters Kidney, Heart, Spleen, Liver</p>
<p class="text-sm mb-4">Warms and tonifies Yang, dispels cold, promotes circulation, relieves pain.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-amber-700">Best in: Winter</span>
<button class="text-amber-700 hover:text-amber-900 text-sm font-medium">
View Details <i class="fas fa-arrow-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- Herb Card 5 -->
<div class="herb-card bg-white rounded-lg overflow-hidden">
<div class="h-48 bg-purple-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-purple-600"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-amber-900">Peony <span class="chinese-font">芍药</span></h3>
<span class="text-xs bg-purple-100 text-purple-800 px-2 py-1 rounded">Cool</span>
</div>
<p class="text-sm text-gray-600 mb-4">Bitter, sour; enters Liver, Spleen</p>
<p class="text-sm mb-4">Nourishes Blood, calms the Liver, relieves pain, regulates menses.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-amber-700">Best in: Spring</span>
<button class="text-amber-700 hover:text-amber-900 text-sm font-medium">
View Details <i class="fas fa-arrow-right ml-1"></i>
</button>
</div>
</div>
</div>
<!-- Herb Card 6 -->
<div class="herb-card bg-white rounded-lg overflow-hidden">
<div class="h-48 bg-yellow-100 flex items-center justify-center">
<i class="fas fa-leaf text-6xl text-yellow-600"></i>
</div>
<div class="p-6">
<div class="flex justify-between items-start mb-2">
<h3 class="text-xl font-semibold text-amber-900">Licorice <span class="chinese-font">甘草</span></h3>
<span class="text-xs bg-yellow-100 text-yellow-800 px-2 py-1 rounded">Neutral</span>
</div>
<p class="text-sm text-gray-600 mb-4">Sweet; enters all 12 channels</p>
<p class="text-sm mb-4">Tonifies Spleen Qi, moistens Lung, clears heat, detoxifies, harmonizes formulas.</p>
<div class="flex justify-between items-center">
<span class="text-xs text-amber-700">Best in: Late Summer</span>
<button class="text-amber-700 hover:text-amber-900 text-sm font-medium">
View Details <i class="fas fa-arrow-right ml-1"></i>
</button>
</div>
</div>
</div>
</div>
<div class="mt-8 flex justify-center">
<button class="bg-amber-800 hover:bg-amber-700 text-white px-6 py-2 rounded-full transition">
Load More Herbs
</button>
</div>
</div>
</div>
</section>
<!-- Divider -->
<div class="divider my-16"></div>
<!-- Polestar Cosmology Section -->
<section class="polestar-cosmology">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-amber-900 mb-4">Polestar Cosmology</h2>
<p class="text-lg text-amber-800 max-w-3xl mx-auto">
Align your herbal practice with the celestial rhythms of the Polestar calendar and astrology.
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<!-- Calendar -->
<div class="bg-white p-6 rounded-lg shadow-sm">
<div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-semibold text-amber-900">Polestar Calendar</h3>
<div class="flex items-center space-x-2">
<button class="text-amber-700 hover:text-amber-900">
<i class="fas fa-chevron-left"></i>
</button>
<span class="font-medium">June 2023</span>
<button class="text-amber-700 hover:text-amber-900">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
<div class="grid grid-cols-7 gap-2 mb-4">
<div class="text-center font-medium text-amber-800">Sun</div>
<div class="text-center font-medium text-amber-800">Mon</div>
<div class="text-center font-medium text-amber-800">Tue</div>
<div class="text-center font-medium text-amber-800">Wed</div>
<div class="text-center font-medium text-amber-800">Thu</div>
<div class="text-center font-medium text-amber-800">Fri</div>
<div class="text-center font-medium text-amber-800">Sat</div>
</div>
<div class="grid grid-cols-7 gap-2">
<!-- Calendar days -->
<div class="calendar-day">28</div>
<div class="calendar-day">29</div>
<div class="calendar-day">30</div>
<div class="calendar-day">31</div>
<div class="calendar-day">1</div>
<div class="calendar-day">2</div>
<div class="calendar-day">3</div>
<div class="calendar-day">4</div>
<div class="calendar-day">5</div>
<div class="calendar-day">6</div>
<div class="calendar-day">7</div>
<div class="calendar-day">8</div>
<div class="calendar-day">9</div>
<div class="calendar-day">10</div>
<div class="calendar-day">11</div>
<div class="calendar-day">12</div>
<div class="calendar-day">13</div>
<div class="calendar-day">14</div>
<div class="calendar-day active">15</div>
<div class="calendar-day">16</div>
<div class="calendar-day">17</div>
<div class="calendar-day">18</div>
<div class="calendar-day">19</div>
<div class="calendar-day">20</div>
<div class="calendar-day">21</div>
<div class="calendar-day">22</div>
<div class="calendar-day">23</div>
<div class="calendar-day">24</div>
<div class="calendar-day">25</div>
<div class="calendar-day">26</div>
<div class="calendar-day">27</div>
<div class="calendar-day">28</div>
<div class="calendar-day">29</div>
<div class="calendar-day">30</div>
<div class="calendar-day">1</div>
</div>
<div class="mt-6 p-4 bg-amber-50 rounded-lg">
<h4 class="font-medium text-amber-800 mb-2">Today's Celestial Notes</h4>
<p class="text-sm">
<span class="font-medium">June 15:</span> The Moon enters Scorpio today, a powerful time for herbs that work with the Water element and Kidney system. Consider Rehmannia or Eucommia bark to nourish Kidney Yin.
</p>
</div>
</div>
<!-- Astrology Chart -->
<div class="astrology-chart p-6 rounded-lg">
<h3 class="text-xl font-semibold text-amber-900 mb-6">Current Astrological Influences</h3>
<div class="relative h-64 w-64 mx-auto mb-8">
<!-- Chart circles -->
<div class="absolute inset-0 rounded-full border-2 border-amber-300"></div>
<div class="absolute inset-8 rounded-full border border-amber-200"></div>
<!-- Zodiac signs -->
<div class="absolute top-0 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
<div class="w-8 h-8 rounded-full bg-white border border-amber-300 flex items-center justify-center">
<span class="text-xs"></span>
</div>
</div>
<div class="absolute top-1/2 right-0 transform translate-x-1/2 -translate-y-1/2">
<div class="w-8 h-8 rounded-full bg-white border border-amber-300 flex items-center justify-center">
<span class="text-xs"></span>
</div>
</div>
<div class="absolute bottom-0 left-1/2 transform -translate-x-1/2 translate-y-1/2">
<div class="w-8 h-8 rounded-full bg-white border border-amber-300 flex items-center justify-center">
<span class="text-xs"></span>
</div>
</div>
<div class="absolute top-1/2 left-0 transform -translate-x-1/2 -translate-y-1/2">
<div class="w-8 h-8 rounded-full bg-white border border-amber-300 flex items-center justify-center">
<span class="text-xs"></span>
</div>
</div>
<!-- Planetary positions -->
<div class="absolute" style="top: 30%; left: 30%">
<div class="w-6 h-6 rounded-full bg-amber-600 flex items-center justify-center text-white text-xs">
</div>
</div>
<div class="absolute" style="top: 40%; left: 60%">
<div class="w-6 h-6 rounded-full bg-amber-400 flex items-center justify-center text-white text-xs">
</div>
</div>
<div class="absolute" style="top: 60%; left: 20%">
<div class="w-5 h-5 rounded-full bg-amber-800 flex items-center justify-center text-white text-xs">
</div>
</div>
</div>
<div class="space-y-4">
<div>
<h4 class="font-medium text-amber-800">Sun in Gemini</h4>
<p class="text-sm">Focus on herbs that benefit the Lung and Large Intestine systems, such as Apricot Seed or Mulberry Leaf.</p>
</div>
<div>
<h4 class="font-medium text-amber-800">Moon in Scorpio</h4>
<p class="text-sm">A time for deep healing with Blood-moving herbs like Safflower or Frankincense.</p>
</div>
<div>
<h4 class="font-medium text-amber-800">Saturn Retrograde</h4>
<p class="text-sm">Support the Kidney Yang with warming herbs like Cinnamon or Eucommia during this period of reflection.</p>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Footer -->
<footer class="bg-amber-900 text-amber-100 py-12 px-6">
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="flex items-center space-x-2 mb-4">
<div class="w-10 h-10 rounded-full bg-amber-700 flex items-center justify-center text-white">
<i class="fas fa-leaf"></i>
</div>
<span class="text-xl font-semibold">Celestial Herbs</span>
</div>
<p class="text-sm opacity-80">
Bridging ancient Chinese herbal wisdom with celestial rhythms for holistic healing.
</p>
</div>
<div>
<h4 class="font-semibold text-lg mb-4">Explore</h4>
<ul class="space-y-2">
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Herbal Library</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Seasonal Guides</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Celestial Calendar</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Diagnosis Tools</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-lg mb-4">Learn</h4>
<ul class="space-y-2">
<li><a href="#" class="opacity-80 hover:opacity-100 transition">TCM Fundamentals</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Herb Preparation</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Polestar Cosmology</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 transition">Case Studies</a></li>
</ul>
</div>
<div>
<h4 class="font-semibold text-lg mb-4">Connect</h4>
<div class="flex space-x-4 mb-4">
<a href="#" class="w-8 h-8 rounded-full bg-amber-800 flex items-center justify-center hover:bg-amber-700 transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-8 h-8 rounded-full bg-amber-800 flex items-center justify-center hover:bg-amber-700 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-8 h-8 rounded-full bg-amber-800 flex items-center justify-center hover:bg-amber-700 transition">
<i class="fab fa-youtube"></i>
</a>
<a href="#" class="w-8 h-8 rounded-full bg-amber-800 flex items-center justify-center hover:bg-amber-700 transition">
<i class="fab fa-pinterest-p"></i>
</a>
</div>
<p class="text-sm opacity-80">
Subscribe to our celestial herbal newsletter
</p>
<div class="mt-2 flex">
<input type="email" placeholder="Your email" class="px-4 py-2 text-sm bg-amber-800 rounded-l focus:outline-none w-full">
<button class="bg-amber-700 hover:bg-amber-600 px-3 rounded-r">
<i class="fas fa-paper-plane"></i>
</button>
</div>
</div>
</div>
<div class="max-w-7xl mx-auto mt-12 pt-6 border-t border-amber-800 text-sm text-center opacity-70">
<p>© 2023 Celestial Herbs. All rights reserved. Traditional Chinese Medicine wisdom for modern healing.</p>
</div>
</footer>
<script>
// Toggle between Herbal Selector and Polestar Calendar
const toggleButtons = document.querySelectorAll('.pill-toggle');
const herbalSection = document.querySelector('.herbal-selector');
const calendarSection = document.querySelector('.polestar-cosmology');
toggleButtons.forEach(button => {
button.addEventListener('click', () => {
toggleButtons.forEach(btn => btn.classList.toggle('active'));
if (button.textContent.includes('Herbal')) {
herbalSection.style.display = 'block';
calendarSection.style.display = 'none';
} else {
herbalSection.style.display = 'none';
calendarSection.style.display = 'block';
}
});
});
// Initially hide the calendar section
calendarSection.style.display = 'none';
// Calendar day selection
const calendarDays = document.querySelectorAll('.calendar-day');
calendarDays.forEach(day => {
day.addEventListener('click', () => {
calendarDays.forEach(d => d.classList.remove('active'));
day.classList.add('active');
});
});
</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://enzostvs-deepsite.hf.space/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://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Its3sticks/rmdycu" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>