blogger / index.html
Addy450's picture
Add 3 files
62e6024 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Golden Nest - AI & Aging Insights</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=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f5f0;
}
.title-font {
font-family: 'Playfair Display', serif;
}
.hero-gradient {
background: linear-gradient(135deg, #f5d7a1 0%, #e4b562 100%);
}
.article-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.nav-link:hover {
color: #d4a017;
}
.golden-text {
color: #d4a017;
}
.animated-underline {
position: relative;
display: inline-block;
}
.animated-underline::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #d4a017;
transition: width 0.3s ease;
}
.animated-underline:hover::after {
width: 100%;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
</style>
</head>
<body class="text-gray-800">
<!-- Header/Navigation -->
<header class="bg-white shadow-sm sticky top-0 z-50">
<div class="container mx-auto px-4 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fas fa-crow text-2xl golden-text"></i>
<h1 class="title-font text-2xl font-bold golden-text">Golden Nest</h1>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#" class="nav-link animated-underline font-medium">Home</a>
<a href="#" class="nav-link animated-underline font-medium">Articles</a>
<a href="#" class="nav-link animated-underline font-medium">Research</a>
<a href="#" class="nav-link animated-underline font-medium">About</a>
<a href="#" class="nav-link animated-underline font-medium">Contact</a>
</nav>
<div class="flex items-center space-x-4">
<button class="md:hidden">
<i class="fas fa-bars text-xl"></i>
</button>
<button class="hidden md:block bg-amber-600 hover:bg-amber-700 text-white px-4 py-2 rounded-full font-medium transition duration-300">
Subscribe
</button>
</div>
</div>
</header>
<!-- Hero Section -->
<section class="hero-gradient py-16 md:py-24">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h2 class="title-font text-4xl md:text-5xl font-bold mb-6 text-gray-800">Embracing the Golden Years with AI</h2>
<p class="text-lg mb-8 text-gray-700">Exploring how artificial intelligence is revolutionizing aging, longevity, and quality of life for seniors worldwide.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-gray-800 hover:bg-gray-900 text-white px-6 py-3 rounded-full font-medium transition duration-300">
Read Latest Articles
</button>
<button class="border-2 border-gray-800 hover:bg-gray-800 hover:text-white px-6 py-3 rounded-full font-medium transition duration-300">
Watch Our Videos
</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-64 h-64 md:w-80 md:h-80">
<div class="absolute inset-0 bg-amber-200 rounded-full opacity-20 floating"></div>
<img src="https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="Happy senior couple with technology"
class="relative rounded-full object-cover w-full h-full border-8 border-white shadow-lg floating"
style="animation-delay: 0.5s;">
</div>
</div>
</div>
</section>
<!-- Featured Articles -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="title-font text-3xl md:text-4xl font-bold mb-4">Featured Articles</h2>
<p class="max-w-2xl mx-auto text-gray-600">Discover the latest insights on AI applications in aging, longevity research, and senior care technologies.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Article 1 -->
<div class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1573497491208-6b1acb260507?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="AI in healthcare"
class="w-full h-full object-cover transition duration-500 hover:scale-105">
<div class="absolute top-4 left-4 bg-amber-600 text-white px-3 py-1 rounded-full text-xs font-semibold">
New Research
</div>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>June 15, 2023</span>
<span class="mx-2"></span>
<span>8 min read</span>
</div>
<h3 class="text-xl font-bold mb-3">How AI is Predicting Alzheimer's 10 Years Before Symptoms</h3>
<p class="text-gray-600 mb-4">Groundbreaking neural networks are analyzing speech patterns and eye movements to detect early signs of cognitive decline with unprecedented accuracy.</p>
<a href="#" class="golden-text font-medium flex items-center">
Read More
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
<!-- Article 2 -->
<div class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="Robot assisting senior"
class="w-full h-full object-cover transition duration-500 hover:scale-105">
<div class="absolute top-4 left-4 bg-amber-600 text-white px-3 py-1 rounded-full text-xs font-semibold">
Technology
</div>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>May 28, 2023</span>
<span class="mx-2"></span>
<span>6 min read</span>
</div>
<h3 class="text-xl font-bold mb-3">Companion Robots: The Future of Elderly Independence</h3>
<p class="text-gray-600 mb-4">From medication reminders to fall detection, AI-powered companions are helping seniors maintain independence while ensuring safety and social connection.</p>
<a href="#" class="golden-text font-medium flex items-center">
Read More
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
<!-- Article 3 -->
<div class="article-card bg-white rounded-xl overflow-hidden shadow-md transition duration-300">
<div class="relative h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1622675363311-3e1904dc1885?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="DNA strand"
class="w-full h-full object-cover transition duration-500 hover:scale-105">
<div class="absolute top-4 left-4 bg-amber-600 text-white px-3 py-1 rounded-full text-xs font-semibold">
Longevity
</div>
</div>
<div class="p-6">
<div class="flex items-center text-sm text-gray-500 mb-2">
<span>April 12, 2023</span>
<span class="mx-2"></span>
<span>10 min read</span>
</div>
<h3 class="text-xl font-bold mb-3">The AI Revolution in Anti-Aging Drug Discovery</h3>
<p class="text-gray-600 mb-4">Machine learning algorithms are screening millions of compounds to identify potential longevity drugs, accelerating research that could extend healthy lifespans.</p>
<a href="#" class="golden-text font-medium flex items-center">
Read More
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="border-2 border-amber-600 text-amber-600 hover:bg-amber-600 hover:text-white px-6 py-3 rounded-full font-medium transition duration-300">
View All Articles
</button>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-16 bg-gray-100">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-8 md:p-12">
<div class="md:flex">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h2 class="title-font text-3xl font-bold mb-4">Stay Updated</h2>
<p class="text-gray-600 mb-6">Join our Golden Nest community and receive weekly insights on AI and aging directly to your inbox.</p>
<div class="flex space-x-4">
<div class="bg-gray-100 p-3 rounded-lg">
<i class="fas fa-newspaper golden-text text-xl"></i>
</div>
<div>
<h4 class="font-bold">Exclusive Content</h4>
<p class="text-sm text-gray-500">Articles, research summaries, and interviews you won't find anywhere else.</p>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500">
</div>
<div>
<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-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-500 focus:border-amber-500">
</div>
<div class="flex items-center">
<input type="checkbox" id="consent" class="h-4 w-4 text-amber-600 focus:ring-amber-500 border-gray-300 rounded">
<label for="consent" class="ml-2 block text-sm text-gray-700">
I agree to receive emails from Golden Nest
</label>
</div>
<button type="submit" class="w-full bg-amber-600 hover:bg-amber-700 text-white px-6 py-3 rounded-lg font-medium transition duration-300">
Subscribe Now
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<div class="relative">
<div class="absolute -top-6 -left-6 w-32 h-32 bg-amber-100 rounded-lg z-0"></div>
<img src="https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="Dr. Sarah Chen"
class="relative z-10 rounded-lg shadow-lg w-full max-w-md">
</div>
</div>
<div class="lg:w-1/2">
<h2 class="title-font text-3xl md:text-4xl font-bold mb-6">About Golden Nest</h2>
<p class="text-gray-600 mb-6">
Founded by gerontologist Dr. Sarah Chen and AI researcher Mark Williams, Golden Nest bridges the gap between cutting-edge technology and aging populations. Our mission is to demystify AI applications in senior care and longevity science.
</p>
<p class="text-gray-600 mb-8">
With over 15 years of combined experience in aging research and artificial intelligence, we provide evidence-based, accessible content that empowers individuals, caregivers, and healthcare professionals to make informed decisions about technology and aging.
</p>
<div class="flex flex-wrap gap-4">
<div class="flex items-center">
<div class="bg-amber-100 p-2 rounded-full mr-3">
<i class="fas fa-microscope golden-text"></i>
</div>
<span class="font-medium">Research-Backed</span>
</div>
<div class="flex items-center">
<div class="bg-amber-100 p-2 rounded-full mr-3">
<i class="fas fa-heart golden-text"></i>
</div>
<span class="font-medium">Compassionate</span>
</div>
<div class="flex items-center">
<div class="bg-amber-100 p-2 rounded-full mr-3">
<i class="fas fa-lightbulb golden-text"></i>
</div>
<span class="font-medium">Innovative</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-12">
<h2 class="title-font text-3xl md:text-4xl font-bold mb-4">What Our Readers Say</h2>
<p class="max-w-2xl mx-auto text-gray-600">Hear from our community of seniors, caregivers, and healthcare professionals.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="text-amber-400 text-xl 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 mb-6 italic">"Golden Nest helped me understand how a smart home system could help my mother live independently longer. The implementation guide was incredibly practical."</p>
<div class="flex items-center">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
alt="Michael T."
class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Michael T.</h4>
<p class="text-sm text-gray-500">Caregiver</p>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="text-amber-400 text-xl 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 mb-6 italic">"As a geriatric nurse, I appreciate how Golden Nest translates complex AI concepts into practical applications we can use in our senior care facility."</p>
<div class="flex items-center">
<img src="https://images.unsplash.com/photo-1559839734-2b71ea197ec2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
alt="Dr. Lisa Park"
class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Dr. Lisa Park</h4>
<p class="text-sm text-gray-500">Geriatric Nurse</p>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<div class="text-amber-400 text-xl 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 mb-6 italic">"At 72, I was intimidated by technology. Golden Nest's beginner-friendly guides helped me set up health monitoring apps that give my children peace of mind."</p>
<div class="flex items-center">
<img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=100&q=80"
alt="Margaret L."
class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Margaret L.</h4>
<p class="text-sm text-gray-500">Reader since 2021</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<div>
<div class="flex items-center space-x-2 mb-6">
<i class="fas fa-crow text-2xl golden-text"></i>
<h3 class="title-font text-xl font-bold golden-text">Golden Nest</h3>
</div>
<p class="text-gray-400 mb-6">Illuminating the intersection of artificial intelligence and aging since 2019.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-facebook text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-youtube text-xl"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Explore</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">All Articles</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">AI Basics for Seniors</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Caregiver Resources</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Product Reviews</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Research Summaries</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Our Team</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">Terms of Service</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Get In Touch</h4>
<address class="not-italic text-gray-400 mb-6">
123 Tech Avenue<br>
Silver Springs, MD 20904<br>
United States
</address>
<p class="text-gray-400 mb-2">
<i class="fas fa-envelope mr-2 golden-text"></i> hello@goldennest.ai
</p>
<p class="text-gray-400">
<i class="fas fa-phone mr-2 golden-text"></i> (555) 123-4567
</p>
</div>
</div>
<div class="pt-8 border-t border-gray-800 text-center text-gray-500 text-sm">
<p>© 2023 Golden Nest. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Simple JavaScript for demonstration purposes
document.addEventListener('DOMContentLoaded', function() {
// Mobile menu toggle would go here
const mobileMenuButton = document.querySelector('.md\\:hidden');
// You would add click handlers for mobile menu, etc.
// 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'
});
});
});
// Article card hover effects
const articleCards = document.querySelectorAll('.article-card');
articleCards.forEach(card => {
card.addEventListener('mouseenter', () => {
card.style.transform = 'translateY(-5px)';
card.style.boxShadow = '0 10px 25px rgba(0,0,0,0.1)';
});
card.addEventListener('mouseleave', () => {
card.style.transform = '';
card.style.boxShadow = '';
});
});
});
</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=Addy450/blogger" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>