edusphere-navigator / index.html
tokey4's picture
make the website much better
41650cf verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EduSphere Navigator - Learn Smart</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
50: '#fdf4ff',
100: '#fae8ff',
200: '#f5d0fe',
300: '#f0abfc',
400: '#e879f9',
500: '#d946ef',
600: '#c026d3',
700: '#a21caf',
800: '#86198f',
900: '#701a75',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8 relative overflow-hidden">
<!-- Particle Background -->
<div class="absolute inset-0 overflow-hidden pointer-events-none">
<div class="absolute -top-40 -right-40 w-80 h-80 bg-primary-500/10 rounded-full blur-3xl"></div>
<div class="absolute -bottom-40 -left-40 w-80 h-80 bg-secondary-500/10 rounded-full blur-3xl"></div>
</div>
<!-- Hero Section -->
<section class="text-center mb-16 relative">
<div class="inline-block px-6 py-2 bg-primary-500/10 rounded-full border border-primary-500/20 mb-6">
<span class="text-primary-400 font-medium">🚀 Enhanced Learning Platform</span>
</div>
<h1 class="text-5xl md:text-7xl font-bold mb-6">
<span class="gradient-text">Master Your Subjects</span>
<br>
<span class="text-3xl md:text-5xl font-light text-gray-400">with Interactive Content</span>
</h1>
<p class="text-xl text-gray-400 max-w-3xl mx-auto mb-10">
Dive deep into comprehensive learning materials, organized chapters, and interactive video lessons tailored for your academic success.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="btn-primary px-8 py-3 text-lg font-semibold">
<i data-feather="play-circle" class="inline w-5 h-5 mr-2"></i>
Start Free Trial
</button>
<a href="#subjects" class="px-8 py-3 text-lg font-semibold border border-gray-700 rounded-xl hover:border-primary-500 hover:text-primary-400 transition-colors">
<i data-feather="book-open" class="inline w-5 h-5 mr-2"></i>
Explore Subjects
</a>
</div>
</section>
<!-- Stats Section -->
<section class="glass-dark rounded-2xl p-8 mb-16">
<div class="grid grid-cols-2 md:grid-cols-4 gap-6">
<div class="text-center p-6 rounded-xl bg-gray-900/50 hover:bg-gray-800/50 transition-colors">
<div class="text-4xl font-bold mb-2 text-primary-400 stat-number" id="stat-subjects">0</div>
<div class="text-gray-400">Subjects</div>
</div>
<div class="text-center p-6 rounded-xl bg-gray-900/50 hover:bg-gray-800/50 transition-colors">
<div class="text-4xl font-bold mb-2 text-secondary-400 stat-number" id="stat-chapters">0</div>
<div class="text-gray-400">Chapters</div>
</div>
<div class="text-center p-6 rounded-xl bg-gray-900/50 hover:bg-gray-800/50 transition-colors">
<div class="text-4xl font-bold mb-2 text-cyan-400 stat-number" id="stat-lessons">0</div>
<div class="text-gray-400">Lessons</div>
</div>
<div class="text-center p-6 rounded-xl bg-gray-900/50 hover:bg-gray-800/50 transition-colors">
<div class="text-4xl font-bold mb-2 text-pink-400 stat-number" id="stat-videos">0</div>
<div class="text-gray-400">Video Tutorials</div>
</div>
</div>
</section>
<!-- Subjects Grid -->
<section class="mb-16" id="subjects">
<div class="flex justify-between items-center mb-8">
<div>
<h2 class="text-3xl font-bold text-primary-300">Available Subjects</h2>
<p class="text-gray-400">Choose from our curated collection of academic subjects</p>
</div>
<div class="flex gap-2">
<button class="p-2 rounded-lg border border-gray-700 hover:border-primary-500 hover:text-primary-400">
<i data-feather="filter"></i>
</button>
<button class="p-2 rounded-lg border border-gray-700 hover:border-primary-500 hover:text-primary-400">
<i data-feather="grid"></i>
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" id="subjects-grid">
<!-- Subjects will be populated by JavaScript -->
</div>
</section>
<!-- Features Section -->
<section class="glass rounded-2xl p-8 mb-16">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-4">Why Choose EduSphere?</h2>
<p class="text-gray-400 max-w-2xl mx-auto">Experience the future of education with our cutting-edge platform</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="feature-card p-6 rounded-xl bg-gray-900/30 hover:bg-gray-800/50 transition-all hover-glow">
<div class="w-14 h-14 bg-gradient-to-br from-primary-500 to-cyan-500 rounded-xl flex items-center justify-center mb-4">
<i data-feather="book-open" class="w-7 h-7"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Structured Learning</h3>
<p class="text-gray-400 text-sm">Organized chapters and topics for systematic knowledge acquisition with clear learning paths.</p>
</div>
<div class="feature-card p-6 rounded-xl bg-gray-900/30 hover:bg-gray-800/50 transition-all hover-glow">
<div class="w-14 h-14 bg-gradient-to-br from-secondary-500 to-pink-500 rounded-xl flex items-center justify-center mb-4">
<i data-feather="video" class="w-7 h-7"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Interactive Videos</h3>
<p class="text-gray-400 text-sm">Integrated YouTube videos with custom themed player controls and chapter markers.</p>
</div>
<div class="feature-card p-6 rounded-xl bg-gray-900/30 hover:bg-gray-800/50 transition-all hover-glow">
<div class="w-14 h-14 bg-gradient-to-br from-green-500 to-emerald-500 rounded-xl flex items-center justify-center mb-4">
<i data-feather="award" class="w-7 h-7"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Progress Tracking</h3>
<p class="text-gray-400 text-sm">Monitor your learning journey with detailed analytics and achievement badges.</p>
</div>
<div class="feature-card p-6 rounded-xl bg-gray-900/30 hover:bg-gray-800/50 transition-all hover-glow">
<div class="w-14 h-14 bg-gradient-to-br from-yellow-500 to-amber-500 rounded-xl flex items-center justify-center mb-4">
<i data-feather="download-cloud" class="w-7 h-7"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Download Resources</h3>
<p class="text-gray-400 text-sm">Access downloadable materials, slides, and code samples for offline study.</p>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="text-center mb-16">
<div class="glass rounded-3xl p-12 max-w-4xl mx-auto relative overflow-hidden">
<div class="absolute -top-20 -right-20 w-40 h-40 bg-primary-500/10 rounded-full blur-3xl"></div>
<div class="absolute -bottom-20 -left-20 w-40 h-40 bg-secondary-500/10 rounded-full blur-3xl"></div>
<h2 class="text-4xl font-bold mb-4">Ready to Transform Your Learning?</h2>
<p class="text-xl text-gray-400 mb-8 max-w-2xl mx-auto">
Join thousands of students who have improved their grades with our interactive platform.
</p>
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="btn-primary px-10 py-4 text-lg font-semibold">
<i data-feather="user-plus" class="inline w-5 h-5 mr-2"></i>
Create Free Account
</button>
<button class="px-10 py-4 text-lg font-semibold border-2 border-gray-700 rounded-xl hover:border-primary-500 hover:text-primary-400 transition-colors">
<i data-feather="play" class="inline w-5 h-5 mr-2"></i>
Watch Demo
</button>
</div>
<p class="text-gray-500 mt-6 text-sm">No credit card required • 14-day free trial • Cancel anytime</p>
</div>
</section>
</main>
<custom-footer></custom-footer>
<!-- Components -->
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>