knowledge-navigator / index.html
Stern8's picture
clone the homepage of this page https://learn-anything.xyz/
0c082f7 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Knowledge Navigator - Learn Anything</title>
<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 src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
</head>
<body class="bg-gray-50 text-gray-900 min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-grow container mx-auto px-4 py-12">
<div id="vanta-bg" class="absolute top-0 left-0 w-full h-full -z-10"></div>
<section class="max-w-4xl mx-auto text-center mb-16">
<h1 class="text-5xl md:text-6xl font-bold mb-6">Learn Anything</h1>
<p class="text-xl md:text-2xl text-gray-600 mb-8">Interactive roadmaps to guide your learning journey</p>
<div class="relative max-w-xl mx-auto">
<input type="text" placeholder="What do you want to learn?"
class="w-full px-6 py-4 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 shadow-lg">
<button class="absolute right-2 top-2 bg-blue-500 text-white p-2 rounded-full hover:bg-blue-600 transition">
<i data-feather="search"></i>
</button>
</div>
</section>
<section class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Popular Topics Cards -->
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-blue-100 flex items-center justify-center mr-3">
<i data-feather="code" class="text-blue-500"></i>
</div>
<h3 class="font-bold text-lg">Programming</h3>
</div>
<p class="text-gray-600 mb-4">Roadmaps for all programming languages and frameworks</p>
<a href="#" class="text-blue-500 font-medium flex items-center">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-green-100 flex items-center justify-center mr-3">
<i data-feather="cpu" class="text-green-500"></i>
</div>
<h3 class="font-bold text-lg">Machine Learning</h3>
</div>
<p class="text-gray-600 mb-4">From basics to advanced AI concepts</p>
<a href="#" class="text-blue-500 font-medium flex items-center">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-purple-100 flex items-center justify-center mr-3">
<i data-feather="shield" class="text-purple-500"></i>
</div>
<h3 class="font-bold text-lg">Cybersecurity</h3>
</div>
<p class="text-gray-600 mb-4">Become an ethical hacker and security expert</p>
<a href="#" class="text-blue-500 font-medium flex items-center">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-yellow-100 flex items-center justify-center mr-3">
<i data-feather="dollar-sign" class="text-yellow-500"></i>
</div>
<h3 class="font-bold text-lg">Finance</h3>
</div>
<p class="text-gray-600 mb-4">Master personal and corporate finance</p>
<a href="#" class="text-blue-500 font-medium flex items-center">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-red-100 flex items-center justify-center mr-3">
<i data-feather="heart" class="text-red-500"></i>
</div>
<h3 class="font-bold text-lg">Health</h3>
</div>
<p class="text-gray-600 mb-4">Nutrition, fitness and medical knowledge</p>
<a href="#" class="text-blue-500 font-medium flex items-center">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 hover:shadow-xl transition">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center mr-3">
<i data-feather="globe" class="text-indigo-500"></i>
</div>
<h3 class="font-bold text-lg">Languages</h3>
</div>
<p class="text-gray-600 mb-4">Learn new languages effectively</p>
<a href="#" class="text-blue-500 font-medium flex items-center">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</section>
<section class="mt-20 max-w-4xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-6">How it works</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="p-6">
<div class="w-16 h-16 mx-auto mb-4 bg-blue-100 rounded-full flex items-center justify-center">
<i data-feather="search" class="text-blue-500 w-8 h-8"></i>
</div>
<h3 class="font-bold text-xl mb-2">Find Your Path</h3>
<p class="text-gray-600">Search for any topic you want to learn</p>
</div>
<div class="p-6">
<div class="w-16 h-16 mx-auto mb-4 bg-green-100 rounded-full flex items-center justify-center">
<i data-feather="map" class="text-green-500 w-8 h-8"></i>
</div>
<h3 class="font-bold text-xl mb-2">Follow Roadmaps</h3>
<p class="text-gray-600">Step-by-step learning paths created by experts</p>
</div>
<div class="p-6">
<div class="w-16 h-16 mx-auto mb-4 bg-purple-100 rounded-full flex items-center justify-center">
<i data-feather="award" class="text-purple-500 w-8 h-8"></i>
</div>
<h3 class="font-bold text-xl mb-2">Master Skills</h3>
<p class="text-gray-600">Achieve your learning goals efficiently</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
VANTA.GLOBE({
el: "#vanta-bg",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00,
color: 0x3b82f6,
backgroundColor: 0xf8fafc
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>