-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
353 lines (323 loc) · 15.2 KB
/
index.html
File metadata and controls
353 lines (323 loc) · 15.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FOSS Club</title>
<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=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<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" class="active">Home</a></li>
<li><a href="./about.html">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="hero parallax">
<div class="bg"></div>
<div class="hero-content fade-in-up">
<h1 class="glitch-text" data-text="FOSS Club Sit">FOSS Club SIT</h1>
<p class="typewriter-text">Join our vibrant community to learn, build, and share.</p>
<div class="cta-buttons index-button">
<a href="projects.html" class="cta-button glow-effect">View Projects</a>
<a href="about.html" class="cta-button outline-effect">Learn More</a>
</div>
</div>
<div class="hero-stats">
<div class="stat-item">
<span class="stat-number">5+</span>
<span class="stat-label">Active Projects</span>
</div>
<div class="stat-item">
<span class="stat-number">30+</span>
<span class="stat-label">Members</span>
</div>
<div class="stat-item">
<span class="stat-number">10+</span>
<span class="stat-label">Events/Year</span>
</div>
</div>
</section>
<section class="terminal-section">
<div class="terminal-container">
<div class="terminal-code">
<div class="terminal-header">
<div class="terminal-button"></div>
<div class="terminal-button"></div>
<div class="terminal-button"></div>
<div class="terminal-title">FOSS Club Terminal</div>
</div>
<div class="terminal-body">
<div class="code-line"><span class="prompt">$</span> <span class="command">git clone</span> https://github.com/FOSSClubSIT/OfficialWebsite.git</div>
<div class="code-line"><span class="result">Cloning into 'OfficialWebsite'...</span></div>
<div class="code-line"><span class="prompt">$</span> <span class="command">cd</span> OfficialWebsite</div>
<div class="code-line"><span class="prompt">$</span> <span class="command">npm</span> install</div>
<div class="code-line"><span class="result">Installing dependencies...</span></div>
<div class="code-line"><span class="prompt">$</span> <span class="command">npm</span> start</div>
<div class="code-line"><span class="result">Starting development server...</span></div>
<div class="code-line"><span class="success">Server running at http://localhost:3000</span></div>
<div class="code-line"><span class="prompt">$</span> <span class="command">echo</span> "Join our community!"</div>
<div class="code-line"><span class="result">Join our community!</span></div>
<div class="code-line blink"><span class="prompt">$</span> <span class="cursor">|</span></div>
</div>
</div>
<div class="terminal-content">
<h2 class="section-heading">What is FOSS?</h2>
<div class="section-divider"></div>
<p>At FOSS Club SIT, we're passionate about the freedom and innovation that open-source software represents. Our community is built on collaboration, learning, and creating meaningful projects together.</p>
<ul class="terminal-features">
<li><i class="fas fa-code"></i> <span>Real-world coding experience</span></li>
<li><i class="fas fa-users"></i> <span>Supportive community of developers</span></li>
<li><i class="fas fa-laptop-code"></i> <span>Hands-on project contribution</span></li>
<li><i class="fas fa-certificate"></i> <span>Portfolio-worthy accomplishments</span></li>
</ul>
<a href="about.html" class="terminal-btn">Learn to Contribute <i class="fas fa-terminal"></i></a>
</div>
</div>
</section>
<section class="about-section">
<div class="about-container">
<div class="about-content">
<h2 class="section-heading">About Us</h2>
<div class="section-divider"></div>
<p>FOSS Club at SIT Pune is a student-led community dedicated to promoting free and open-source software. We believe in learning through collaboration and creating innovative solutions that benefit everyone.</p>
<div class="about-features">
<div class="feature">
<i class="fas fa-code"></i>
<span>Collaborative Coding</span>
</div>
<div class="feature">
<i class="fas fa-chalkboard-teacher"></i>
<span>Hands-on Workshops</span>
</div>
<div class="feature">
<i class="fas fa-project-diagram"></i>
<span>Real-world Projects</span>
</div>
</div>
<a href="about.html" class="learn-more-link">Discover our journey <i class="fas fa-arrow-right"></i></a>
</div>
<div class="about-image">
<img src="assets/Images/team.jpeg" alt="FOSS Club Community">
</div>
</div>
</section>
<section class="featured-projects">
<div class="featured-header">
<h2 class="section-heading">Featured Projects</h2>
<div class="section-divider"></div>
</div>
<div class="project-item">
<div class="project-image left">
<img src="assets/Images/Android_Auto-Logo.wine.png" alt="Android Auto">
</div>
<div class="project-details">
<div class="project-badge">Featured</div>
<h3>Android Auto</h3>
<p>An open-source implementation of Android Auto for vehicles, featuring custom UIs and extended functionality beyond the official version. Our solution focuses on user privacy and control.</p>
<div class="tech-pills">
<span>Android</span>
<span>Java</span>
<span>Kotlin</span>
</div>
<a href="projects.html#android-auto" class="project-link">Explore Project <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="project-item reverse">
<div class="project-image right">
<img src="assets/Images/Linux_from_scratch.jpg" alt="Linux From Scratch">
</div>
<div class="project-details">
<h3>Linux From Scratch</h3>
<p>A collaborative effort to build a lightweight, customized Linux distribution from source code. Our implementation focuses on performance optimization and educational value for understanding operating system fundamentals.</p>
<div class="tech-pills">
<span>Linux</span>
<span>C</span>
<span>Shell</span>
</div>
<a href="projects.html#linux" class="project-link">Explore Project <i class="fas fa-arrow-right"></i></a>
</div>
</div>
<div class="projects-cta">
<a href="projects.html" class="cta-button glow-effect">View All Projects</a>
</div>
</section>
<section class="achievements-text-section">
<div class="achievements-wrapper">
<h2 class="section-heading">Our Achievements & Milestones</h2>
<div class="section-divider"></div>
<div class="achievements-highlights">
<div class="highlight-group">
<h3 class="highlight-title"><i class="fas fa-trophy"></i> Recognition & Awards</h3>
<div class="highlight-content">
<p>The FOSS Club has been officially recognized by the <strong>Symbiosis Institute of Technology</strong> as an innovative student-led initiative. Our projects have received acknowledgment from the <strong>FOSS United Foundation</strong>, marking our presence in the wider open-source community.</p>
<p>Our Android Auto implementation was featured in the <strong>College Tech Expo 2024</strong>, receiving the <em>"Most Innovative Project"</em> award among 50+ participating teams.</p>
</div>
</div>
<div class="highlight-group">
<h3 class="highlight-title"><i class="fas fa-code-branch"></i> Technical Contributions</h3>
<div class="highlight-content">
<p>Club members have collectively contributed <strong>100+ pull requests</strong> to various open-source projects, with a notable contribution to the <strong>OpenWRT Project</strong> for porting it to Archer A6 V4 routers.</p>
<p>We've successfully completed the implementation of 5 major projects including Custom Linux Distro, Android Auto, NAS Solutions, Reinforcement Learning Games, and our own FOSS Club Website.</p>
</div>
</div>
<div class="highlight-group">
<h3 class="highlight-title"><i class="fas fa-calendar-check"></i> Events & Community Impact</h3>
<div class="highlight-content">
<p>Since our formation in January 2024, we've organized <strong>5+ technical workshops</strong> including the successful "FOSS in AI" workshop in April 2024 with over 50 participants.</p>
<p>The club co-hosted <strong>FOSSHACK 2024</strong> with AIML SIT Pune, attracting 100+ participants and resulting in 20+ innovative projects over the 36-hour hackathon.</p>
</div>
</div>
</div>
<div class="achievements-stats">
<div class="stat-card">
<div class="stat-number">30+</div>
<div class="stat-label">Active Members</div>
</div>
<div class="stat-card">
<div class="stat-number">5+</div>
<div class="stat-label">Major Projects</div>
</div>
<div class="stat-card">
<div class="stat-number">100+</div>
<div class="stat-label">GitHub Contributions</div>
</div>
<div class="stat-card">
<div class="stat-number">500+</div>
<div class="stat-label">Workshop Participants</div>
</div>
</div>
</div>
</section>
<section class="tech-stack-showcase">
<div class="tech-showcase-container">
<h2 class="section-heading">Technologies We Use</h2>
<div class="section-divider"></div>
<div class="tech-orbital">
<div class="tech-core">
<div class="core-label">FOSS</div>
</div>
<div class="tech-orbit">
<div class="tech-planet"><i class="fab fa-python"></i></div>
<div class="tech-planet"><i class="fab fa-js"></i></div>
<div class="tech-planet"><i class="fab fa-react"></i></div>
<div class="tech-planet"><i class="fab fa-node"></i></div>
<div class="tech-planet"><i class="fab fa-linux"></i></div>
<div class="tech-planet"><i class="fab fa-docker"></i></div>
<div class="tech-planet"><i class="fab fa-github"></i></div>
<div class="tech-planet"><i class="fab fa-android"></i></div>
</div>
</div>
<div class="tech-categories">
<div class="tech-category">
<h3>Web Development</h3>
<div class="tech-items">
<span><i class="fab fa-html5"></i> HTML5</span>
<span><i class="fab fa-css3-alt"></i> CSS3</span>
<span><i class="fab fa-js"></i> JavaScript</span>
<span><i class="fab fa-react"></i> React</span>
<span><i class="fab fa-node"></i> Node.js</span>
</div>
</div>
<div class="tech-category">
<h3>Systems & DevOps</h3>
<div class="tech-items">
<span><i class="fab fa-linux"></i> Linux</span>
<span><i class="fab fa-docker"></i> Docker</span>
<span><i class="fab fa-github"></i> GitHub</span>
<span><i class="fas fa-server"></i> Networking</span>
</div>
</div>
<div class="tech-category">
<h3>Machine Learning</h3>
<div class="tech-items">
<span><i class="fab fa-python"></i> Python</span>
<span><i class="fas fa-brain"></i> TensorFlow</span>
<span><i class="fas fa-chart-line"></i> Data Science</span>
</div>
</div>
</div>
</div>
</section>
<section class="newsletter-section">
<div class="newsletter-container">
<h2 class="section-heading">Contact Us via Email</h2>
<div class="section-divider"></div>
<p>Reach out to us for any queries, collaborations, or contributions to FOSS Club SIT.</p>
<div class="subscribe">
<a href="fossclub@sitpune.edu.in" class="subscribe-btn">
<i class="fas fa-envelope"></i> Email Us
</a>
</div>
<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>
</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>
<style>
.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 60px;
height: 60px;
font-size: 1.5em;
color: #333;
}
</style>
<script src="./js/script.js"></script>
<script src="./js/navigation.js"></script>
</body>
</html>