laniakea / index.html
Vicent3's picture
Update index.html
461fe68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LANIAKEA - Explore the Universe of Computer Science</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
integrity="sha512-om+YH2JUbzyvxd2B8y7WuUVMxusdAw/SFqPnB+imfX7LaFOTPMwr9yeG8NrNmvfW0Pv//HD6fx9ZgqM7nR1BAg=="
crossorigin="anonymous" />
</head>
<body class="bg-gray-100">
<header class="py-20 text-center bg-blue-700 text-white">
<div class="container mx-auto">
<h1 class="text-4xl font-bold mb-4">Welcome to LANIAKEA</h1>
<p class="text-xl">Explore the Universe of Computer Science</p>
</div>
</header>
<section class="py-20">
<div class="container mx-auto">
<div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8">
<!-- Category Data Science -->
<div class="bg-white shadow-lg rounded-lg p-8 text-center">
<div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
<i class="fas fa-database fa-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Data Science</h3>
<p class="text-gray-700 mb-4">Discover how to analyze and interpret complex datasets.</p>
<a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
</div>
<!-- Category AI -->
<div class="bg-white shadow-lg rounded-lg p-8 text-center">
<div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
<i class="fas fa-robot fa-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Artificial Intelligence</h3>
<p class="text-gray-700 mb-4">Learn about AI algorithms and applications.</p>
<a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
</div>
<!-- Category Web Dev -->
<div class="bg-white shadow-lg rounded-lg p-8 text-center">
<div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
<i class="fas fa-code fa-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Web Development</h3>
<p class="text-gray-700 mb-4">Build interactive websites using the latest technologies.</p>
<a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
</div>
<!-- Category ML -->
<div class="bg-white shadow-lg rounded-lg p-8 text-center">
<div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
<i class="fas fa-brain fa-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Machine Learning</h3>
<p class="text-gray-700 mb-4">Discover how machines can learn and improve from data.</p>
<a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
</div>
<!-- Category Cybersec -->
<div class="bg-white shadow-lg rounded-lg p-8 text-center">
<div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
<i class="fas fa-shield-alt fa-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Cybersecurity</h3>
<p class="text-gray-700 mb-4">Learn how to protect computer systems and networks from cyber threats.</p>
<a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
</div>
<!-- Category OS -->
<div class="bg-white shadow-lg rounded-lg p-8 text-center">
<div class="flex justify-center items-center h-16 w-16 bg-blue-500 text-white rounded-full mx-auto mb-4">
<i class="fas fa-microchip fa-2x"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Operating Systems</h3>
<p class="text-gray-700 mb-4">Explore Operating systems and how to handle them.</p>
<a href="#" class="inline-block px-6 py-3 bg-blue-500 text-white rounded-full">Explore</a>
</div>
</div>
</div>
</section>
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto text-center">
<p>&copy; 2023 LANIAKEA. AGPLv3.</p>
<p>Made with <3 by <i class="fas fa-heart text-red-500"></i> Me and Myself</p>
</div>
</footer>
<script src="https://cdn.tailwindcss.com/2.0.2/tailwind.min.js"></script>
</body>
</html>