This repository was archived by the owner on Mar 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
211 lines (205 loc) · 5.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>UberCoders - GSoC 2025</title>
<link
href="https://cdnjs.cloudflare.com/ajax/libs/lucide/0.263.1/lucide.min.css"
rel="stylesheet"
/>
<!-- favicon -->
<link
rel="icon"
type="image/webp"
href="/images/icon.png"
/>
<link
rel="stylesheet"
href="styles/landing-page.css"
/>
<script
src="https://code.jquery.com/jquery-3.6.0.slim.min.js"
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI="
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Header -->
<!-- Updated Header with new navbar -->
<nav class="navbar">
<div class="logo">
<i data-lucide="code"></i>
<span>UberCoders</span>
</div>
<div class="nav-links">
<a href="#program">Program</a>
<a
href="https://chat.whatsapp.com/Egzobar83QXIfqk1T2eAyI"
>Community</a
>
<a href="#timeline">Timeline</a>
<a href="sign-up-page.html">Sign Up</a>
</div>
</nav>
<header class="container">
<div class="hero">
<h1>
Your Path to <span>GSoC 2025</span>
</h1>
<p>
Join our thriving open source community
and prepare together for Google Summer
of Code 2025
</p>
<div class="button-group">
<button class="btn btn-primary">
Join Community
<i data-lucide="users"></i>
</button>
<a
href="https://github.com/thedipankarroy/ubercoders"
>
<button class="btn btn-secondary">
View Resources
<i data-lucide="book-open"></i>
</button>
</a>
</div>
</div>
</header>
<!-- Program Section -->
<section id="program" class="program">
<div class="container">
<h2 class="section-title">
GSoC 2025 Preparation Program
</h2>
<div class="features-grid">
<div class="feature-card">
<i data-lucide="github"></i>
<h3>Open Source Projects</h3>
<p>
Hands-on experience with real open
source projects and contribution
guidance
</p>
</div>
<div class="feature-card">
<i data-lucide="users"></i>
<h3>Mentorship</h3>
<p>
Learn from experienced GSoC alumni
and open source contributors
</p>
</div>
<div class="feature-card">
<i data-lucide="message-square"></i>
<h3>Community Support</h3>
<p>
Active Discord community for peer
learning and collaboration
</p>
</div>
</div>
</div>
</section>
<!-- Timeline Section -->
<section id="timeline" class="timeline">
<div class="container">
<h2 class="section-title">
Preparation Timeline
</h2>
<div class="timeline-grid">
<div class="timeline-card">
<h3>Phase 1: Foundation</h3>
<ul>
<li>Git & GitHub fundamentals</li>
<li>
Open source contribution basics
</li>
<li>
Project exploration workshops
</li>
</ul>
</div>
<div class="timeline-card">
<h3>Phase 2: Active Contributing</h3>
<ul>
<li>
Hands-on project contributions
</li>
<li>Mentorship sessions</li>
<li>Mock proposal reviews</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Community Section -->
<section id="community" class="community">
<div class="container">
<h2 class="section-title">
Join Our Community
</h2>
<div class="features-grid">
<div class="feature-card">
<i data-lucide="calendar"></i>
<h3>Weekly Sessions</h3>
<p>
Regular workshops, coding sessions,
and mentorship meetings
</p>
</div>
<div class="feature-card">
<i data-lucide="star"></i>
<h3>Project Showcase</h3>
<p>
Showcase your contributions and get
feedback from mentors
</p>
</div>
<div class="feature-card">
<i data-lucide="rocket"></i>
<h3>Success Stories</h3>
<p>
Learn from past GSoC participants
and their experiences
</p>
</div>
</div>
</div>
</section>
<!-- Join Section -->
<section id="join">
<div class="container">
<div class="hero">
<h2 class="section-title">
Ready to Start Your GSoC Journey?
</h2>
<p>
Join our community and take the first
step towards your open source journey
</p>
<button
class="btn btn-primary join-whatsapp"
>
Join WhatsApp Community
</button>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>
© 2024 UberCoders. All rights reserved.
</p>
</footer>
<script
src="/script/landingPage.js"
defer
></script>
</body>
</html>