Skip to content

Commit 9f4d203

Browse files
authored
fellowship proposal (#296)
1 parent 40a31ae commit 9f4d203

2 files changed

Lines changed: 146 additions & 2 deletions

File tree

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
---
2+
3+
---
4+
5+
<div class="lg:p-8">
6+
<h1
7+
class="mb-10 mt-20 font-header text-2xl font-bold md:text-3xl lg:mt-40 lg:text-5xl"
8+
id="apply"
9+
>
10+
How to Apply
11+
</h1>
12+
13+
<p class="mb-8 text-base md:text-lg lg:text-2xl">
14+
<strong>No form fill-up needed.</strong> Just send us your
15+
proposal.
16+
</p>
17+
18+
<!-- Dev/Design Fellowship Section -->
19+
<div
20+
class="mb-12 rounded-3xl border-[1px] border-[#e0e0e0] bg-peach p-6 lg:p-8"
21+
>
22+
<h2
23+
class="mb-6 font-header text-xl font-bold text-orange md:text-2xl lg:text-3xl"
24+
>
25+
Dev/Design Fellowship
26+
</h2>
27+
28+
<div class="mb-6">
29+
<p
30+
class="mb-3 text-base font-semibold md:text-lg lg:text-xl"
31+
>
32+
Instructions to apply:
33+
</p>
34+
<ol
35+
class="ml-6 list-decimal space-y-3 text-base md:text-lg lg:text-xl"
36+
>
37+
<li>
38+
Find a project you are interested in and start
39+
contributing there.
40+
</li>
41+
<li>
42+
Send a work proposal to <a
43+
href="mailto:fellowship@bitshala.org?subject=Application for Bitshala Fellowship"
44+
class="font-semibold text-orange underline hover:no-underline"
45+
>fellowship@bitshala.org</a
46+
> with subject <strong
47+
>"Application for Bitshala Fellowship"</strong
48+
>.
49+
</li>
50+
</ol>
51+
</div>
52+
53+
<div class="rounded-2xl bg-white p-5 lg:p-6">
54+
<p
55+
class="mb-3 text-base font-semibold md:text-lg lg:text-xl"
56+
>
57+
The work proposal should include:
58+
</p>
59+
<ul
60+
class="ml-6 list-disc space-y-2 text-base md:text-lg lg:text-xl"
61+
>
62+
<li>
63+
Your background and prior contributions in the
64+
project.
65+
</li>
66+
<li>
67+
List of tasks targeted for the next 6 months.
68+
</li>
69+
<li>Rough timeline of deliverables.</li>
70+
<li>
71+
One paragraph summarising the impact of the work.
72+
</li>
73+
<li>
74+
Testimonial from the maintainer vetting the scope
75+
of work.
76+
</li>
77+
<li>Contact details of the maintainer.</li>
78+
</ul>
79+
</div>
80+
</div>
81+
82+
<!-- Educator Fellowship Section -->
83+
<div
84+
class="mb-12 rounded-3xl border-[1px] border-[#e0e0e0] bg-peach p-6 lg:p-8"
85+
>
86+
<h2
87+
class="mb-6 font-header text-xl font-bold text-orange md:text-2xl lg:text-3xl"
88+
>
89+
Educator Fellowship
90+
</h2>
91+
92+
<div class="mb-6">
93+
<p
94+
class="mb-3 text-base font-semibold md:text-lg lg:text-xl"
95+
>
96+
Instructions to apply:
97+
</p>
98+
<ol
99+
class="ml-6 list-decimal space-y-3 text-base md:text-lg lg:text-xl"
100+
>
101+
<li>
102+
Find your domain of interest: clubs, cohort
103+
TA-ship, meetups, or any other educational
104+
activities.
105+
</li>
106+
<li>
107+
Send a proposal to <a
108+
href="mailto:fellowship@bitshala.org?subject=Application for Bitshala Fellowship"
109+
class="font-semibold text-orange underline hover:no-underline"
110+
>fellowship@bitshala.org</a
111+
> with subject <strong
112+
>"Application for Bitshala Fellowship"</strong
113+
>.
114+
</li>
115+
</ol>
116+
</div>
117+
118+
<div class="rounded-2xl bg-white p-5 lg:p-6">
119+
<p
120+
class="mb-3 text-base font-semibold md:text-lg lg:text-xl"
121+
>
122+
The proposal should include:
123+
</p>
124+
<ul
125+
class="ml-6 list-disc space-y-2 text-base md:text-lg lg:text-xl"
126+
>
127+
<li>
128+
Your background and prior contributions in Bitcoin
129+
education.
130+
</li>
131+
<li>
132+
Details of the activities you wanna take up for
133+
the next 6 months.
134+
</li>
135+
<li>Rough plan of execution.</li>
136+
<li>
137+
One paragraph summarising the impact of the work.
138+
</li>
139+
</ul>
140+
</div>
141+
</div>
142+
</div>

src/pages/fellowship.astro

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import DevProjects from "../components/apprenticeship/DevProjects.astro";
66
import CatalystInitiative from "../components/apprenticeship/CatalystInitiative.astro";
77
import Apply from "../components/apprenticeship/Apply";
88
import OnceAgain from "../components/apprenticeship/OnceAgain.astro";
9+
import Instructions from "../components/apprenticeship/Instructions.astro";
910
---
1011

1112
<Layout
@@ -57,7 +58,8 @@ import OnceAgain from "../components/apprenticeship/OnceAgain.astro";
5758
<CatalystInitiative />
5859
<OurApprentices />
5960
<OnceAgain />
60-
<div id="apply">
61+
<Instructions />
62+
<!-- <div id="apply">
6163
<Apply client:only />
62-
</div>
64+
</div> -->
6365
</Layout>

0 commit comments

Comments
 (0)