subhomoy-roy-choudhury's picture
Add the other pages design as well
06042bf verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | GitHub Galaxy Explorer</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
/* Same styles as index.html */
</style>
</head>
<body>
<div class="min-h-screen">
<!-- Navigation (same as trending.html) -->
<!-- Main Content -->
<section class="py-12 px-6 lg:px-12 max-w-4xl mx-auto">
<h1 class="text-3xl font-bold mb-8">About GitHub Galaxy</h1>
<div class="prose prose-invert max-w-none">
<p class="text-gray-300 mb-6">
GitHub Galaxy Explorer is a platform designed to help developers discover
the most interesting and valuable projects across the GitHub ecosystem.
</p>
<h2 class="text-2xl font-bold mt-8 mb-4">Our Mission</h2>
<p class="text-gray-300 mb-6">
We aim to surface the best open-source projects, tools, and resources
to help developers be more productive and creative in their work.
</p>
<h2 class="text-2xl font-bold mt-8 mb-4">Features</h2>
<ul class="text-gray-300 space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="star" class="w-5 h-5 text-purple-400 mr-2 mt-1"></i>
<span>Trending repositories across all languages</span>
</li>
<li class="flex items-start">
<i data-feather="package" class="w-5 h-5 text-purple-400 mr-2 mt-1"></i>
<span>Curated collections for specific technologies</span>
</li>
<li class="flex items-start">
<i data-feather="tool" class="w-5 h-5 text-purple-400 mr-2 mt-1"></i>
<span>Essential developer tools and extensions</span>
</li>
</ul>
</div>
</section>
<!-- Footer (same as index.html) -->
</div>
<script>
feather.replace();
</script>
</body>
</html>