-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhidden.html
99 lines (92 loc) · 4.09 KB
/
hidden.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!-- Reviews section -->
<section id="nreviews" class="my-32 flex flex-col gap-y-8 lg:gap-y-12">
<div class="flex flex-col items-center gap-y-2 lg:gap-y-4">
<h3 class="text-lg md:text-xl lg:text-2xl font-extralight">
{ What participants say about HackINI }
</h3>
<h2 class="uppercase text-3xl lg:text-4xl font-bold title-gradient">
Reviews
</h2>
</div>
<div id="reviews" class="w-4/5 mx-auto flex justify-between flex-wrap relative">
<!---->
</div>
</section>
<!-- End -->
<!-- Registration -->
<section class="my-32 flex flex-col gap-y-8 lg:gap-y-12">
<div class="flex flex-col items-center gap-y-2 lg:gap-y-4">
<h3 class="text-lg md:text-xl lg:text-2xl font-extralight">
{ Be part of HackINI 2022! }
</h3>
<h2 class="uppercase text-3xl lg:text-4xl font-bold title-gradient">
Registration
</h2>
</div>
<div class="flex flex-col items-center lg:flex-row justify-evenly">
<div class="card-gradient h-96 w-72 md:w-96 box flex flex-col items-center p-6 md:p-8 my-4">
<h5 class="uppercase text-lg text-gray-300">{ Acces portal to }</h5>
<h4 class="text-2xl font-bold">Conferences</h4>
<div class="w-4/5 h-[0.5px] bg-white my-4"></div>
<div class="w-full md:w-[90%] flex flex-col gap-y-3 md:gap-y-4 text-gray-300 my-2">
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Formal meetings
</div>
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Pro-leveled speakers
</div>
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Advanced cybersecurity topics
</div>
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Theoretical concepts of hacking
</div>
</div>
<a href="" class="text-black px-8 py-1 font-bold mt-4 rounded-full bg-gradient-to-r from-[#74E250] to-[#24ECCA]">
Register now
</a>
</div>
<div class="card-gradient h-96 w-72 md:w-96 box flex flex-col items-center p-6 md:p-8 my-4">
<h5 class="uppercase text-lg text-gray-300">{ Acces portal to }</h5>
<h4 class="text-2xl font-bold">Workshops</h4>
<div class="w-4/5 h-[0.5px] bg-white my-4"></div>
<div class="w-full md:w-[90%] flex flex-col gap-y-3 md:gap-y-4 text-gray-300 my-2">
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Interactive meetings
</div>
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Hands-on workshops
</div>
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
From beginner friendly to advanced
</div>
<div class="flex gap-x-2 items-center">
<img class="h-4 w-4" src="./public/assets/check.svg" alt="check">
Practical hacking concepts
</div>
</div>
<a href="" class="text-black px-8 py-1 font-bold mt-4 rounded-full bg-gradient-to-r from-[#74E250] to-[#24ECCA]">
Register now
</a>
</div>
</div>
</section>
<!-- End -->
</body>
</html>