File size: 4,784 Bytes
96aa23f
461fe68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>