-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
84 lines (80 loc) · 2.83 KB
/
about.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
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About</title>
<link rel="icon" type="image/svg+xml" href="./assets/img/github.png" />
<link rel="stylesheet" href="./assets/css/main.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
</head>
<body class="font-Roboto bg-darkgray text-graywhite">
<header class="bg-lightgray p-2">
<div class="flex justify-between items-center">
<div class="">
<img src="/assets/img/logo.png" class="w-11" alt="logo" />
</div>
<ul class="flex cursor-pointer">
<button class="mr-3 hover:text-white" id="homePageBtn">Home</button>
<button class="mr-3 hover:text-white" id="homeAboutPageBtn">About</button>
</ul>
</div>
</header>
<section class="container mx-auto px-3">
<div class="border md:mx-32 mt-6 border-gray-500 border-opacity-25">
<div class="p-4">
<h3 class="uppercase text-center tracking-wider text-xl">
About this <span class="text-ctmblue">App</span>
</h3>
<div>
<h3>Search <span class="text-ctnblue2">GITHUB</span> Users</h3>
<h3>
Developed By :
<span class="hover:text-ctmblue"
><a
href="https://github.com/MrGrootx"
target="_blank"
rel="noopener noreferrer"
>Abishek</a
></span
>
</h3>
<h3>Contact : <span>grootxdev@gmail.com</span></h3>
<h3 class="">
Version : <span class="text-green-500">1.0.0</span>
</h3>
</div>
<div class="flex justify-end gap-3 py-2">
<a
href="https://github.com/MrGrootx/github-finder"
class="hover:text-ctnblue2"
target="_blank"
rel="noopener noreferrer"
><i class="fa-brands fa-github"></i
></a>
<a
href="https://discord.gg/Nm5FSxK2gv"
class="hover:text-ctnblue2"
target="_blank"
rel="noopener noreferrer"
><i class="fa-brands fa-discord"></i
></a>
<a
href="http://"
class="hover:text-ctnblue2"
target="_blank"
rel="noopener noreferrer"
></a>
</div>
</div>
</div>
</section>
<script type="module" src="./assets/js/main.js"></script>
</body>
</html>