-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathC4gt2025Description.js
More file actions
65 lines (62 loc) · 2.34 KB
/
C4gt2025Description.js
File metadata and controls
65 lines (62 loc) · 2.34 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
// src/components/C4GT2025Description.js
import React from "react";
function C4GT2025Description() {
return (
<div
className="container padding-top--md padding-bottom--lg container-height"
>
<div className="row">
<div className="col width">
<div>
<article>
<nav
className="theme-doc-breadcrumbs breadcrumbs-margin"
aria-label="breadcrumbs"
>
<ul className="breadcrumbs">
<li className="breadcrumbs__item">
<a className="breadcrumbs__link breadcrumbs-items" href="/">
🏠
</a>
</li>
<li className="breadcrumbs__item breadcrumbs__item--active">
<a
className="breadcrumbs__link breadcrumbs-items cursor-pointer"
>
C4GT'25
</a>
</li>
</ul>
</nav>
<div className="theme-doc-markdown markdown">
<header>
<h1>C4GT'25</h1>
</header>
<p>
C4GT Mentoring Program 2025 is shaping up to be an exciting summer coding program, building upon the success of previous years to foster a strong community focused on developing and contributing to global digital public goods.
</p>
<ul>
<li>
An opportunity for college students and working
professionals in India to dive into the GovTech space in 2025.
</li>
<li>Organized annually over 2 months (July-August)</li>
<li>
A new set of diverse and challenging GovTech problem
statements will be presented for participants to tackle in 2025.
</li>
<li>
Shortlisted contributors will receive mentorship from
leading experts in the GovTech ecosystem.
</li>
</ul>
<p>We're thrilled to have you join us in 2025! 🚀</p>
</div>
</article>
</div>
</div>
</div>
</div>
);
}
export default C4GT2025Description;