Skip to content
This repository was archived by the owner on Mar 2, 2025. It is now read-only.

Commit 6448fb6

Browse files
author
Dipankar
committed
Replace index.html with sign-up-page.html and implement sign-up functionality; add smooth scrolling for navigation links
1 parent ebb253c commit 6448fb6

9 files changed

+995
-249
lines changed

landing-page.html

+197
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,197 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1.0"
8+
/>
9+
<title>UberCoders - GSoC 2025</title>
10+
<link
11+
href="https://cdnjs.cloudflare.com/ajax/libs/lucide/0.263.1/lucide.min.css"
12+
rel="stylesheet"
13+
/>
14+
<link
15+
rel="stylesheet"
16+
href="/styles/landing-page.css"
17+
/>
18+
</head>
19+
<body>
20+
<!-- Header -->
21+
<!-- Updated Header with new navbar -->
22+
<nav class="navbar">
23+
<div class="logo">
24+
<i data-lucide="code"></i>
25+
<span>UberCoders</span>
26+
</div>
27+
<div class="nav-links">
28+
<a href="#program">Program</a>
29+
<a href="https://chat.whatsapp.com/Egzobar83QXIfqk1T2eAyI">Community</a>
30+
<a href="#timeline">Timeline</a>
31+
<a href="/sign-up-page.html">Sign Up</a>
32+
</div>
33+
</nav>
34+
35+
<header class="container">
36+
<div class="hero">
37+
<h1>
38+
Your Path to <span>GSoC 2025</span>
39+
</h1>
40+
<p>
41+
Join our thriving open source community
42+
and prepare together for Google Summer
43+
of Code 2025
44+
</p>
45+
<div class="button-group">
46+
<button class="btn btn-primary">
47+
Join Community
48+
<i data-lucide="users"></i>
49+
</button>
50+
<a href="https://github.com/thedipankarroy/ubercoders">
51+
<button class="btn btn-secondary">
52+
View Resources
53+
<i data-lucide="book-open"></i>
54+
</button>
55+
</a>
56+
57+
</div>
58+
</div>
59+
</header>
60+
<!-- Program Section -->
61+
<section id="program" class="program">
62+
<div class="container">
63+
<h2 class="section-title">
64+
GSoC 2025 Preparation Program
65+
</h2>
66+
<div class="features-grid">
67+
<div class="feature-card">
68+
<i data-lucide="github"></i>
69+
<h3>Open Source Projects</h3>
70+
<p>
71+
Hands-on experience with real open
72+
source projects and contribution
73+
guidance
74+
</p>
75+
</div>
76+
<div class="feature-card">
77+
<i data-lucide="users"></i>
78+
<h3>Mentorship</h3>
79+
<p>
80+
Learn from experienced GSoC alumni
81+
and open source contributors
82+
</p>
83+
</div>
84+
<div class="feature-card">
85+
<i data-lucide="message-square"></i>
86+
<h3>Community Support</h3>
87+
<p>
88+
Active Discord community for peer
89+
learning and collaboration
90+
</p>
91+
</div>
92+
</div>
93+
</div>
94+
</section>
95+
96+
<!-- Timeline Section -->
97+
<section id="timeline" class="timeline">
98+
<div class="container">
99+
<h2 class="section-title">
100+
Preparation Timeline
101+
</h2>
102+
<div class="timeline-grid">
103+
<div class="timeline-card">
104+
<h3>Phase 1: Foundation</h3>
105+
<ul>
106+
<li>Git & GitHub fundamentals</li>
107+
<li>
108+
Open source contribution basics
109+
</li>
110+
<li>
111+
Project exploration workshops
112+
</li>
113+
</ul>
114+
</div>
115+
<div class="timeline-card">
116+
<h3>Phase 2: Active Contributing</h3>
117+
<ul>
118+
<li>
119+
Hands-on project contributions
120+
</li>
121+
<li>Mentorship sessions</li>
122+
<li>Mock proposal reviews</li>
123+
</ul>
124+
</div>
125+
</div>
126+
</div>
127+
</section>
128+
129+
<!-- Community Section -->
130+
<section id="community" class="community">
131+
<div class="container">
132+
<h2 class="section-title">
133+
Join Our Community
134+
</h2>
135+
<div class="features-grid">
136+
<div class="feature-card">
137+
<i data-lucide="calendar"></i>
138+
<h3>Weekly Sessions</h3>
139+
<p>
140+
Regular workshops, coding sessions,
141+
and mentorship meetings
142+
</p>
143+
</div>
144+
<div class="feature-card">
145+
<i data-lucide="star"></i>
146+
<h3>Project Showcase</h3>
147+
<p>
148+
Showcase your contributions and get
149+
feedback from mentors
150+
</p>
151+
</div>
152+
<div class="feature-card">
153+
<i data-lucide="rocket"></i>
154+
<h3>Success Stories</h3>
155+
<p>
156+
Learn from past GSoC participants
157+
and their experiences
158+
</p>
159+
</div>
160+
</div>
161+
</div>
162+
</section>
163+
164+
<!-- Join Section -->
165+
<section id="join">
166+
<div class="container">
167+
<div class="hero">
168+
<h2 class="section-title">
169+
Ready to Start Your GSoC Journey?
170+
</h2>
171+
<p>
172+
Join our community and take the first
173+
step towards your open source journey
174+
</p>
175+
<button
176+
class="btn btn-primary join-whatsapp"
177+
>
178+
Join WhatsApp Community
179+
</button>
180+
</div>
181+
</div>
182+
</section>
183+
184+
<!-- Footer -->
185+
<footer>
186+
<p>
187+
© 2024 UberCoders. All rights reserved.
188+
</p>
189+
</footer>
190+
191+
<script src="https://cdnjs.cloudflare.com/ajax/libs/lucide/0.263.1/lucide.min.js"></script>
192+
<script
193+
src="/script/landingPage.js"
194+
defer
195+
></script>
196+
</body>
197+
</html>

0 commit comments

Comments
 (0)