-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathindex.html
161 lines (153 loc) · 5.3 KB
/
index.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!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" />
<link rel="stylesheet" href="./assets/css/index.css" />
<link rel="stylesheet" href="./assets/css/navbar.css" />
<link rel="stylesheet" href="./assets/css/desktop.css" />
<link rel="stylesheet" href="./assets/css/utilities.css" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.3/css/all.css"
integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk"
crossorigin="anonymous"
/>
<title>Unclebigbay and Friends</title>
<link rel="icon" type="image/png" href="./assets/img/teamwork.png"/>
</head>
<body>
<div class="main-layout">
<header>
<nav>
<h1 class="brand">Ubb & Friends</h1>
<section class="hamburger">
<i class="fas fa-bars"></i>
</section>
<section class="nav-links">
<a href="./public/about.html">About us</a>
<a href="./public/members.html">Members</a>
<a href="https://unclebigbay.com/series/challenge" target="_blank">tasks</a>
<a
href="https://www.buymeacoffee.com/unclebigbay"
class="buy-me-a-coffee"
><span> buy me </span> a coffee</a
>
</section>
</nav>
</header>
<main>
<section class="one">
<section class="section-1">
<!-- Right content -->
<section class="content">
<h1 class="hero" data-aos="zoom-in">
Bunch of developers helping one another grow into industry
experts
</h1>
<p
class="description"
data-aos="zoom-in-down"
data-aos-duration="1000"
>
Join over 300+ developers in our community today.
</p>
</section>
<section class="button-wrapper">
<button
type="button"
class="btn join-us"
onclick="window.location.href='https://docs.google.com/forms/d/e/1FAIpQLSfsgm3gBKYKq4uRCIcMLtrIqKtCe7bUVMtMPfPyjfgSSbZltQ/viewform?usp=sf_link'"
>
Join us
</button>
</section>
</section>
<!-- Image -->
<section class="section-2">
<img
src="./assets/img/friends.svg"
alt="friends standing and holding drinks"
/>
</section>
</section>
<section class="new-section two">
<!-- Stack section -->
<h1>our community</h1>
<section class="available-stacks">
<div
data-aos="zoom-in-left"
class="available-stacks-person available-stacks-person__pink"
>
<i class="fas fa-laptop-code"></i>
<h2>Software Engineers</h2>
</div>
<div
data-aos="zoom-in-left"
class="available-stacks-person available-stacks-person__purple"
>
<i class="fas fa-file-code"></i>
<h2>Frontend Designers</h2>
</div>
<div
data-aos="zoom-in-left"
class="available-stacks-person available-stacks-person__orange"
>
<i class="fas fa-server"></i>
<h2>Backend Developers</h2>
</div>
<div
data-aos="zoom-in-right"
class="available-stacks-person available-stacks-person__blue"
>
<i class="fas fa-laptop-code"></i>
<h2>Technical Writers</h2>
</div>
<div
data-aos="zoom-in-right"
class="available-stacks-person available-stacks-person__green"
>
<i class="fas fa-users-cog"></i>
<h2>UI/UX Engineers</h2>
</div>
<div
data-aos="zoom-in-right"
class="available-stacks-person available-stacks-person__blue"
>
<i class="fas fa-laptop-code"></i>
<h2>Project Managers/Scrum Master</h2>
</div>
</section>
</section>
<section class="new-section three">
<h1>Weekly Meetup</h1>
<section class="meeting-image">
<img
data-aos="zoom-in-left"
data-aos-duration="100"
src="./assets/img/orange-dots.svg"
class="orange-dot"
/>
<img
data-aos="zoom-in-down"
data-aos-duration="500"
class="meeting-1"
src="./assets/img/meeting-with-unclebigbay.png"
/>
</section>
</section>
</main>
<footer>
Design with 💖 by
<a href="https://www.unclebigbay.com">Unclebigbay</a> and Friends
</footer>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
<script src="./assets/js/index.js"></script>
</body>
</html>