-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocials.html
67 lines (63 loc) · 2.39 KB
/
socials.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
<!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>Connect with Adal</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-900 text-gray-100 font-sans min-h-screen flex items-center justify-center">
<div class="text-center p-6 max-w-md w-full">
<!-- Profile Picture -->
<img
src="https://media.discordapp.net/attachments/1317853067013521431/1328057118997352528/IMG_20241221_164509_958.webp?ex=6785f9d3&is=6784a853&hm=0c5ef0453178661344b44a2dedb4c64ae7b68398b617c0e92bc66ad74893e8e2&=&format=webp&width=468&height=468"
alt="Adal's Profile Picture"
class="w-32 h-32 mx-auto rounded-full mb-4"
/>
<!-- Name and Bio -->
<h1 class="text-2xl font-bold mb-2">Life with Adal</h1>
<p class="text-gray-400 mb-6">
Muslim content creator, coder, and entrepreneur in progress. Let's connect!
</p>
<!-- Links -->
<div class="space-y-4">
<a
href="https://instagram.com/lifewithadalz"
target="_blank"
class="block bg-blue-500 text-white font-medium py-3 px-6 rounded-lg hover:bg-blue-600 transition"
>
🌟 Instagram
</a>
<a
href="https://twitter.com/lifewadalz"
target="_blank"
class="block bg-sky-400 text-white font-medium py-3 px-6 rounded-lg hover:bg-sky-500 transition"
>
🐦 Twitter
</a>
<a
href="https://youtube.com/@lifewithadalz"
target="_blank"
class="block bg-red-500 text-white font-medium py-3 px-6 rounded-lg hover:bg-red-600 transition"
>
🎥 YouTube
</a>
<a
href="https://github.com/dev-adalz"
target="_blank"
class="block bg-gray-800 text-white font-medium py-3 px-6 rounded-lg hover:bg-gray-700 transition"
>
💻 GitHub
</a>
<a
href="https://discord.gg/VQvEacCZk7"
target="_blank"
class="block bg-purple-600 text-white font-medium py-3 px-6 rounded-lg hover:bg-purple-700 transition"
>
🤝 Join My Discord
</a>
</div>
</div>
</body>
</html>