-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
276 lines (235 loc) · 7.68 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="images/favicon.png">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<title>ShadowDevs Babcock</title>
<style>
* {
font-family: 'Space Grotesk', sans-serif;
}
body {
background-color: #121212;
color: #fff;
margin: 0;
padding: 0;
}
.navbar-brand {
margin-top: 1rem;
}
#about {
background-color: #555555;
padding: 4rem 0;
}
#about h2 {
font-family: 'Space Grotesk', sans-serif;
margin-bottom: 2rem;
}
.NAV-TEXT {
font-size: 1.3rem;
}
.nav-active {
position: relative;
color: white;
text-decoration: none;
}
.nav-active::after {
content: '';
display: block;
width: 80%;
height: 2px;
background-color: white;
position: absolute;
bottom: 9px;
}
#hero h1 {
font-family: 'Space Grotesk', sans-serif;
font-weight: 400;
line-height: 1.2;
margin-bottom: 2rem;
}
#hero .btn.btn-secondary {
font-size: 1rem;
}
#hero {
height: 80vh;
padding-top: 1rem;
margin-bottom: 6rem;
}
#hero-image-container {
display: flex;
align-items: center;
justify-content: center;
}
#about p {
font-size: 1.3rem;
line-height: 1.5;
margin-top: 25px;
font-family: 'Space Grotesk', sans-serif;
}
nav img {
height: 50px;
}
.cta-button {
background-color: #24292e;
color: #ffffff;
padding: 15px 30px;
font-size: 18px;
border: none;
cursor: pointer;
display: inline-block;
text-align: center;
text-decoration: none;
transition: background-color 0.3s ease;
border-radius: 8px;
margin-top: 1rem;
margin-bottom: 3rem;
}
.cta-button:hover {
background-color: #555555;
text-decoration: none;
color: white;
}
.github-logo {
height: 24px;
margin-right: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
#hero {
height: auto;
display: flex ;
align-items: center;
justify-content: center;
padding-top: 1rem;
margin-bottom: 5rem;
}
#hero h1{
font-size: 50px;
line-height: 1.3;
}
}
@media (max-width: 767px) {
.nav-active::after {
width: 19%;
}
#hero h1 {
font-size: 1.8rem;
font-weight: 600;
}
#hero .btn.btn-secondary {
font-size: 1rem;
}
#hero {
height: 100vh;
padding-top: 0;
margin-bottom: 3rem;
}
nav img {
height: 35px;
}
.top {
margin-top: 40px;
}
#about h2 {
margin-top: 50px;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<div class="container">
<nav class="navbar navbar-expand-lg navbar-dark">
<a class="navbar-brand" href="/">
<img src="images/logo.png" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse top navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link NAV-TEXT nav-active" href="/" style="color: white;">Home</a></li>
<li class="nav-item"><a class="nav-link NAV-TEXT" href="/projects">Projects</a></li>
<li class="nav-item"><a class="nav-link NAV-TEXT" href="/community">Community (Events)</a></li>
<li class="nav-item"><a class="nav-link NAV-TEXT" href="/contact">Contact</a></li>
</ul>
</div>
</nav>
</div>
<!-- Hero Section -->
<div data-aos="fade-in" id="hero" class="container mt-5">
<div class="row">
<div class="col-md-6">
<h1 class="display-4">A vibrant and dynamic community of passionate developers at Babcock University</h1>
<!-- GitHub Repository CTA Button with GitHub Logo -->
<a data-aos="slide-up" href="https://github.com/Shadowdevsbu/shadowdevsbu" target="_blank" class="cta-button">
<img class="github-logo" src="https://github.com/fluidicon.png" alt="GitHub Logo">
Contribute on GitHub
</a>
</div>
<div id="hero-image-container" class="col-md-6">
<img src="images/hero.png" alt="Hero Image" class="img-fluid" style="width: 100%;"/>
</div>
</div>
</div>
<!-- About Section -->
<section id="about" class="py-5">
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 data-aos="slide-up">About ShadowDevs Babcock</h2>
<div data-aos="fade-in" >
<p>ShadowDevs is a community of passionate developers focused on helping students, especially freshers and sophomores, gain the skills and experience they need to succeed after graduation.</p>
<p>Our mission is to empower students to work together on real-world projects. By building these projects in small teams, we not only gain valuable experience but also create something we can add to our resumes. Many members have used this experience to land internships and freelance gigs.</p>
<p>ShadowDevs bridges the gap between what you learn in the classroom and what you’ll face in the real world. Through teamwork and hands-on coding, we prepare for the challenges of the tech industry.</p>
<p>Whether you’re just starting or looking for new challenges, ShadowDevs welcomes you. Our community includes members of all skill levels, and we believe every contribution can make a difference.</p>
<p>Join us as we learn, build, and grow together. At ShadowDevs, we don’t just code—we collaborate and inspire. Come be part of our community, and let’s shape the future of tech together!</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="text-center py-5">
<a href="https://github.com/Shadowdevsbu/" target="_blank">
<img src="images/github.png" alt="Github Logo" height="50" style="border-radius:10px"/>
</a>
<a href="https://www.linkedin.com/company/shadow-devs/" target="_blank">
<img src="images/linkedin.png" alt="LinkedIn Logo" height="50" style="border-radius:10px"/>
</a>
<hr style="width: 65%; background-color: #555555; border: 2px solid #555555" />
<p class="mt-3">© 2024 Shadow Developers Community</p>
</footer>
<!-- Bootstrap JS and other scripts -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
AOS.init({
// Global settings:
disable: false,
startEvent: 'DOMContentLoaded',
initClassName: 'aos-init',
animatedClassName: 'aos-animate',
useClassNames: false,
disableMutationObserver: false,
debounceDelay: 50,
throttleDelay: 99,
offset: 120,
delay: 0,
duration: 600,
easing: 'ease',
once: false,
mirror: false,
anchorPlacement: 'top-bottom',
});
</script>
</body>
</html>