-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathabout.html
More file actions
499 lines (429 loc) · 16.5 KB
/
about.html
File metadata and controls
499 lines (429 loc) · 16.5 KB
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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | FOSS Club</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/animations.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="./index.html" class="logo">
<img src="./assets/Images/logo.svg" alt="FOSS Logo">
<span>FOSS</span>
</a>
<button id="open-menu" onclick="opensidebar()"><img src="assets/Images/menu_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png" height="50px" width="50px" alt=""></button>
<ul class="nav-links">
<li><button id="close-menu" onclick="closesidebar()"><img src="assets/Images/close_24dp_E3E3E3_FILL0_wght400_GRAD0_opsz24.png" height="50px" width="50px" alt=""></button></li>
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html" class="active">About</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./events.html">Events</a></li>
<li><a href="./team.html">Team</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div id="overlay" onclick="closesidebar()" aria-hidden="true"></div>
<section class="page-banner parallax">
<div class="page-banner-content fade-in-up">
<h1 class="glitch-text" data-text="Our Purpose">Our Purpose</h1>
<p>Building the future of open source, one commit at a time</p>
</div>
</section>
<section class="mission-section fade-in-up">
<div class="container">
<h2 class="section-title about-title">Our Mission</h2>
<div class="mission-content">
<div class="mission-text">
<p>At FOSS Club SIT, we empower aspiring developers through learning, collaboration, and open-source contributions. Our goal is to bridge the gap between academics and real-world tech, fostering innovation and growth. Join us in shaping the future!</p>
<div class="mission-stats">
<div class="stat">
<i class="fas fa-code-branch"></i>
<span>10+</span>
<p>Sessions</p>
</div>
<div class="stat">
<i class="fas fa-users"></i>
<span>30+</span>
<p>Members</p>
</div>
<div class="stat">
<i class="fas fa-calendar-check"></i>
<span>5+</span>
<p>Projects</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="values-section slide-in-right">
<div class="container">
<h2 class="section-title about-title">Our Values</h2>
<div class="section"></div>
<div class="values-grid">
<div class="value-card left">
<i class="fas fa-handshake"></i>
<h3>Collaboration</h3>
<p>We thrive on teamwork, sharing ideas, and growing together by contributing to open-source projects.</p>
</div>
<div class="value-card right">
<i class="fas fa-lightbulb"></i>
<h3>Innovation</h3>
<p>We foster creativity by experimenting, solving problems, and pushing the boundaries of technology.</p>
</div>
<div class="value-card left">
<i class="fas fa-users"></i>
<h3>Community</h3>
<p>We build an inclusive space where students collaborate, mentor, and create meaningful projects.</p>
</div>
<div class="value-card right">
<i class="fas fa-lock-open"></i>
<h3>Transparency</h3>
<p>We believe in openness, ensuring knowledge, code, and decisions are freely accessible to all.</p>
</div>
</div>
</div>
<!-- Add some CSS for styling -->
<style>
.values-section {
padding: 50px 0;
background-color: rgb(22, 22, 22);
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.values-grid {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.value-card {
width: 45%;
background-color: rgb(19, 19, 19);
margin-bottom: 30px;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.value-card:hover {
transform: translateY(-10px);
}
.value-card i {
font-size: 2rem;
color: rgb(0, 255, 136);
margin-bottom: 15px;
}
.value-card h3 {
font-size: 1.5rem;
margin-bottom: 10px;
color: #ffffff;
}
.value-card p {
font-size: 1rem;
color: #ffffff;
}
.left {
text-align: center; /* Align content to the left */
}
.right {
text-align: center; /* Align content to the right */
}
@media (max-width: 768px) {
.value-card {
width: 100%;
text-align: center; /* Center alignment for smaller screens */
margin-bottom: 20px;
}
.left, .right {
text-align: center; /* Override alignment for mobile view */
}
}
</style>
</section>
<section class="timeline-section fade-in-up">
<div class="container">
<h2 class="section-title about-title">Our Journey</h2>
<div class="timeline">
<div class="timeline-start"></div>
<div class="timeline-item">
<div class="timeline-content">
<h3 class="timeline-year">January 2024</h3>
<h4 class="timeline-title">Club Formation</h4>
<p>The club was officially formed with a vision to create a thriving community of tech enthusiasts.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3 class="timeline-year">April 2024</h3>
<h4 class="timeline-title">FOSS in AI</h4>
<p>An event exploring AI and open source, featuring a guest speaker, held on <strong>April 19th</strong> at Symbiosis Institute of Technology Pune.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3 class="timeline-year">July 2024</h3>
<h4 class="timeline-title">FOSS Hack 2024</h4>
<p>The club co-hosted <strong>FOSSHACK 2024</strong> with AIML SIT Pune on <strong>July 27th & 28th</strong>, focusing on innovation and open-source development.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3 class="timeline-year">July 2024</h3>
<h4 class="timeline-title">Sponsored OpenWRT Project</h4>
<p>The club worked on porting OpenWRT to Archer A6 V4, enhancing its capabilities with open-source firmware.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3 class="timeline-year">February 2025</h3>
<h4 class="timeline-title">TechFest Workshop</h4>
<p>The club hosted a workshop at TechFest, introducing students to open-source collaboration and real-world applications.</p>
</div>
</div>
<div class="timeline-end"></div>
</div>
</div>
</section>
<section class="tech-stack-section slide-in-left">
<div class="container">
<h2 class="section-title">Technologies We Love</h2>
<div class="tech-cloud">
<div class="tech-item">
<i class="fab fa-python"></i>
<span>Python</span>
</div>
<div class="tech-item">
<i class="fab fa-js"></i>
<span>JavaScript</span>
</div>
<div class="tech-item">
<i class="fab fa-react"></i>
<span>React</span>
</div>
<div class="tech-item">
<i class="fab fa-node"></i>
<span>Node.js</span>
</div>
<div class="tech-item">
<i class="fab fa-docker"></i>
<span>Docker</span>
</div>
<div class="tech-item">
<i class="fab fa-aws"></i>
<span>AWS</span>
</div>
</div>
</div>
</section>
<section class="community-section fade-in-up">
<div class="container">
<h2 class="section-title">Join Our Community</h2>
<div class="section"></div>
<div class="community-content">
<div class="community-text">
<p>Be a part of a vibrant community that thrives on collaboration, innovation, and learning! At the FOSS Club, we empower students to contribute to open-source projects, build impactful solutions, and grow as developers while making a difference in the world of technology.</p> <div class="community-cta">
<a href="./contact.html" class="cta-button glow-effect">Get Involved</a>
<a href="./projects.html" class="cta-button glow-effect">View Projects</a>
<div class="partners-grid">
<div class="social-links">
<a href="https://www.linkedin.com/company/foss-club-sitp" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/FOSSClubSIT" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.instagram.com/fossclubsit/" target="_blank">
<i class="fab fa-instagram"></i>
</a>
<a href="https://www.youtube.com/@FOSSClubSIT" target="_blank">
<i class="fab fa-youtube"></i>
</a>
</div>
<div class="container">
<h2 class="section-title">Our Partners</h2>
<div class="partners-grid">
<div class="partner-card">
<a href="https://fossunited.org/">
<img src="https://avatars.githubusercontent.com/u/61445214?s=200&v=4" alt="Partner 1">
<h4>FOSS UNITED</h4>
</div>
</a>
<div class="partner-card">
<a href="https://www.sitpune.edu.in//">
<img src="https://www.mathworks.com/academia/tah-portal/symbiosis-institute-of-technology-pune-40493717/_jcr_content/schoolLogo.adapt.full.medium.png/1668594867923.png" alt="Partner 2">
<h4>SIT PUNE</h4>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="community-benefits">
<div class="benefit-item">
<i class="fas fa-graduation-cap"></i>
<h4>Learn & Grow</h4>
<p>Enhance your technical skills by contributing to real-world open-source projects and participating in workshops and hackathons.</p>
</div>
<div class="benefit-item">
<i class="fas fa-comments"></i>
<h4>Network</h4>
<p>Connect with passionate developers, industry professionals, and mentors who share your enthusiasm for open-source development.</p>
</div>
<div class="benefit-item">
<i class="fas fa-rocket"></i>
<h4>Build</h4>
<p>Create impactful solutions that contribute to global open-source initiatives and leave a lasting mark on the tech community.</p>
</div>
</div>
</div>
</div>
<!-- Add some CSS for styling -->
<style>
.community-section {
padding: 60px 0;
background-color: #000000; /* Light background for contrast */
}
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
}
.social-links a {
background: rgba(255, 255, 255, 0.1);
color: #fff;
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
transition: all 0.3s ease;
}
.social-links a:hover {
background: var(--primary-green);
color: #000;
transform: translateY(-5px);
}
.community-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: flex-start; /* Align items to the top */
}
.community-text {
width: 60%; /* Text section takes up more space */
padding-right: 20px; /* Space between text and benefits */
}
.community-text p {
font-size: 1.1rem;
color: #ffffff; /* Slightly lighter text color */
line-height: 1.6; /* Improved readability */
}
.community-cta {
margin-top: 20px; /* Space above buttons */
}
.cta-button {
display: inline-block;
padding: 10px 20px;
margin: 5px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
}
.glow-effect {
background-color: #000000; /* Primary color for the button */
color: #fff; /* White text */
transition: 0.3s ease-in-out;
}
.glow-effect:hover {
box-shadow: 0 0 15px rgba(0,123,255,0.8); /* Glow effect on hover */
}
.outline-effect:hover {
background-color: #007bff; /* Fill color on hover */
color: #fff; /* Change text to white on hover */
}
.community-benefits {
width: 35%; /* Benefits section takes up less space */
display: flex;
flex-direction: column;
gap: 20px; /* Space between benefit items */
}
.benefit-item {
background-color: #ffffff; /* White background for benefits */
padding: 20px;
margin-top: 1.5rem;
border-radius: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out;
}
.benefit-item:hover {
transform: translateY(-5px); /* Lift effect on hover */
}
.benefit-item i {
font-size: 2rem;
color: #08B74F; /* Icon color matches primary color */
margin-bottom: 10px;
}
.benefit-item h4 {
font-size: 1.5rem;
margin-bottom: 5px;
color: #fff; /* Darker title color for benefits */
}
.benefit-item p {
font-size: 1rem;
color: #fff; /* Lighter text for descriptions */
}
@media (max-width: 768px) {
.community-text, .community-benefits {
width: 100%; /* Stack sections on smaller screens */
padding-right: 0; /* Remove right padding on small screens */
text-align: center; /* Center align text on mobile */
margin-bottom: 30px; /* Space below sections on mobile */
}
.community-content {
flex-direction:center;
flex-direction: column; /* Stack content vertically on mobile */
align-items: center;
}
}
</style>
</section>
<footer class="footer">
<div class="footer-content">
<div class="logo-section" style="justify-content: flex-start; margin-left: 10px;">
<img src="assets\Images\logo_full.png" alt="FOSS Club Logo" class="club-logo" style="width: 160px; height: auto;">
</div>
<div class="secondary-menu" style="text-align: center;">
<a href="./index.html" class="menu-link">Home</a>
<a href="./about.html" class="menu-link">About</a>
<a href="./projects.html" class="menu-link">Projects</a>
<a href="./events.html" class="menu-link">Events</a>
<a href="./team.html" class="menu-link">Team</a>
<a href="./contact.html" class="menu-link">Contact</a>
</div>
<div class="social-links" style="display: flex; justify-content: flex-end; gap: 10px;">
<a href="https://www.linkedin.com/company/foss-club-sitp/posts/?feedView=all" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/FOSSClubSIT" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/fossclubsit/" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-instagram"></i></a>
<a href="https://www.youtube.com/@FOSSClubSIT" class="social-icon" style="width: 60px; height: 60px;"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div class="footer-links">
</div>
</footer>
<script src="./js/script.js"></script>
<script src="./js/navigation.js"></script>
</body>
</html>