Spaces:
Running
Running
File size: 8,506 Bytes
0c082f7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | <!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> |