-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
79 lines (74 loc) · 3.29 KB
/
community.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><circle cx='16' cy='16' r='16' fill='%2300f'/><text x='16' y='21' font-size='20' text-anchor='middle' fill='%23fff'>🌍</text></svg>">
<title>Join Our Communities</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-900 text-gray-100 font-sans min-h-screen">
<!-- Header -->
<header class="bg-gray-800 p-4 shadow-lg">
<div class="container mx-auto flex justify-between items-center">
<h1 class="text-2xl font-bold">🌍 Life with Adalz</h1>
<nav>
<a href="/index.html" class="text-gray-400 hover:text-blue-400 mx-2">Home</a>
<a href="#communities" class="text-gray-400 hover:text-blue-400 mx-2">Communities</a>
</nav>
</div>
</header>
<!-- Community Section -->
<section id="communities" class="py-12">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-8">Join Our Communities</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Muslim Brotherhood Card -->
<div class="bg-gray-800 rounded-lg shadow-lg p-6 flex flex-col items-center">
<img
src="https://media.discordapp.net/attachments/1317853067013521431/1328329131498405929/Muslim_20241210_203331_0000.png?ex=67864e68&is=6784fce8&hm=74081b4e8bde0885a177a7f40508f62758c72ce327bfea1d5e79800ff499f28b&=&format=webp&quality=lossless&width=468&height=468"
alt="Muslim Brotherhood"
class="w-32 h-32 rounded-full mb-4"
/>
<h3 class="text-xl font-bold mb-2">Muslim Brotherhood</h3>
<p class="text-gray-400 text-center mb-4">
A supportive community for Muslim brothers worldwide to grow and connect.
</p>
<a
href="https://discord.gg/VQvEacCZk7"
target="_blank"
class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"
>
Join Discord
</a>
</div>
<!-- The Coding Ninjas Card -->
<div class="bg-gray-800 rounded-lg shadow-lg p-6 flex flex-col items-center">
<img
src="https://media.discordapp.net/attachments/1317853067013521431/1328329132232413256/GeekCode_1.png?ex=67864e68&is=6784fce8&hm=6473b86c4bc5cb076a4b76f740de88abf4323f1558e4b5c7ec9a433979d3afd6&=&format=webp&quality=lossless&width=468&height=468"
alt="The Coding Ninjas"
class="w-32 h-32 rounded-full mb-4"
/>
<h3 class="text-xl font-bold mb-2">The Coding Ninjas</h3>
<p class="text-gray-400 text-center mb-4">
A community of coding enthusiasts collaborating on exciting projects.
</p>
<a
href="https://discord.gg/2Gm7En2dxj"
target="_blank"
class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600"
>
Join Discord
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 py-6 text-center">
<p class="text-gray-500">
© 2025 Life with Adalz. All Rights Reserved.
</p>
</footer>
</body>
</html>