Skip to content

Commit 163f7d4

Browse files
authored
Merge pull request #299 from Vayras/update/team-page
update:team-page
2 parents 9f4d203 + 96fabe4 commit 163f7d4

6 files changed

Lines changed: 50 additions & 18 deletions

File tree

public/people/amol.png

25.7 KB
Loading

public/people/vayras.png

22.3 KB
Loading

src/components/apprenticeship/OurApprentices.astro

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,20 @@ const teachingAssistants = [
163163
github: "",
164164
twitter: "",
165165
},
166+
{
167+
name: "Vayras",
168+
desc: "Teaching Assistant for cohorts.",
169+
img: "/people/vayras.png",
170+
github: "https://github.com/Vayras",
171+
twitter: "https://x.com/Vayras6799",
172+
},
173+
{
174+
name: "Amol",
175+
desc: "Teaching Assistant for cohorts.",
176+
img: "/people/amol.png",
177+
github: "",
178+
twitter: "",
179+
},
166180
// {
167181
// name: "Beulah",
168182
// desc: "Teaching Assistant for cohorts.",

src/components/common/list.js

Lines changed: 34 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ export const ta2 = [
132132
export const team = [
133133
{
134134
name: "Raj Maitra",
135-
desc: "Pen-and-paper engineer turned keyboard warrior in multiple rabbit holes. Often known for making a mess. An actual rabbit.",
135+
designation: "General Head",
136+
// desc: "Pen-and-paper engineer turned keyboard warrior in multiple rabbit holes. Often known for making a mess. An actual rabbit.",
136137
image: "raj",
137138
bgColor: "bg-black",
138139
textColor: "text-white",
@@ -142,6 +143,7 @@ export const team = [
142143
},
143144
{
144145
name: "Saurabh S",
146+
designation: "Accounts & Compliance Head.",
145147
desc: "PM juggling Bitcoin FOSS projects and ventures like a circus performer.",
146148
image: "sourav",
147149
bgColor: "bg-orange",
@@ -152,6 +154,7 @@ export const team = [
152154
},
153155
{
154156
name: "Anmol Sharma",
157+
designation: "Engineering & Scouting Head",
155158
desc: "When he is not talking about Bitcoin,he is busy writing code. But let's be honest, he is usually busy talking about Bitcoin.",
156159
image: "anmol",
157160
bgColor: "bg-orange",
@@ -162,6 +165,7 @@ export const team = [
162165
},
163166
{
164167
name: "Jatin",
168+
designation: "Media & Video Editor",
165169
desc: "Shrinks hours into minutes, and edits till the noise fades and the story shines through.",
166170
image: "jatin",
167171
bgColor: "bg-black",
@@ -171,24 +175,27 @@ export const team = [
171175
},
172176
{
173177
name: "Veronika",
178+
designation: "Associate Designer",
174179
desc: "Good at spotting knots, better at untying them.",
175180
image: "veronika",
176181
bgColor: "bg-black",
177182
textColor: "text-white",
178183
headingColor: "text-orange",
179184
},
180-
// {
181-
// name: "Vyras",
182-
// desc: "Always experimenting with new ideas in Bitcoin and Lightning, bringing fresh perspectives to the team.",
183-
// image: "anmol",
184-
// bgColor: "bg-orange",
185-
// textColor: "text-black",
186-
// headingColor: "text-black",
187-
// twitter: "https://twitter.com/vyrasbtc",
188-
// github: "https://github.com/vyrasbtc",
189-
// },
185+
{
186+
name: "Vayras",
187+
designation: "Associate Engineer",
188+
desc: "Always experimenting with new ideas in Bitcoin and Lightning, bringing fresh perspectives to the team.",
189+
image: "vayras",
190+
bgColor: "bg-orange",
191+
textColor: "text-black",
192+
headingColor: "text-black",
193+
twitter: "https://twitter.com/vyrasbtc",
194+
github: "https://github.com/vyrasbtc",
195+
},
190196
{
191197
name: "Paperpsych",
198+
designation: "Events Head",
192199
desc: "If he’s not designing, he’s writing copy, if he’s not doing that, he’s planning some events. If not that.. he’s probably watching Mad Men!",
193200
image: "paperpsych",
194201
bgColor: "bg-orange",
@@ -197,15 +204,26 @@ export const team = [
197204
twitter: "https://twitter.com/_paperpsych",
198205
github: "https://github.com/paperpsych",
199206
},
200-
{
201-
name: "Keraliss",
207+
// {
208+
// name: "Keraliss",
209+
// desc: "Contemplating by a river in his humble hut with his laptop, he codes. He says thats all he needs.",
210+
// image: "keraliss",
211+
// bgColor: "bg-orange",
212+
// textColor: "text-black",
213+
// headingColor: "text-black",
214+
// twitter: "https://twitter.com/keraliss1",
215+
// github: "https://github.com/keraliss",
216+
// },
217+
{
218+
name: "Amol",
219+
designation: "Communication and Coordination Head",
202220
desc: "Contemplating by a river in his humble hut with his laptop, he codes. He says thats all he needs.",
203-
image: "keraliss",
221+
image: "amol",
204222
bgColor: "bg-orange",
205223
textColor: "text-black",
206224
headingColor: "text-black",
207-
twitter: "https://twitter.com/keraliss1",
208-
github: "https://github.com/keraliss",
225+
twitter: "",
226+
github: "",
209227
},
210228
];
211229

src/components/home/People.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import { team, advisors } from "../common/list.js";
5858
<p
5959
class={`lg:p3 px-1 ${member.textColor} min-h-[90px] pb-3 pr-3 text-sm lg:pr-8 lg:text-xl`}
6060
>
61-
{member.desc}
61+
{member.designation}
6262
</p>
6363
</div>
6464
</div>

src/layouts/Layout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const { title, headerProps, isVisible } = Astro.props;
9696
<body class="bg-white">
9797
<Navbar client:only />
9898

99-
<div class=`${isVisible ? "block" : "hidden"}`>
99+
<div class="hidden">
100100
<Notification
101101
message="Apply to Chaincode BOSS"
102102
url="https://job-boards.greenhouse.io/chaincodelabs/jobs/4067628009"

0 commit comments

Comments
 (0)