Skip to content

Commit de68597

Browse files
committed
refactor(quote): add designation
1 parent 4e48e25 commit de68597

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

public/data/alumni.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"image": "assets/images/alumni/tushar-malik.webp",
44
"firstName": "Tushar",
55
"lastName": "Malik",
6-
"quote": "When life gives you peanuts, make more of it: like peanut butter, or maybe sauce.",
6+
"description": "Backend Intern @Mercari, LFX'22 Intern, MLH Fellow",
77
"social": [
88
{
99
"id": "linkedin",
@@ -19,7 +19,7 @@
1919
"image": "assets/images/alumni/aakarsh-mj.webp",
2020
"firstName": "Aakarsh",
2121
"lastName": "MJ",
22-
"quote": "Believe in KDE and contribute to opensource!",
22+
"description": "GSoC'24 @Videolan, GSoC'23 @KDE",
2323
"social": [
2424
{
2525
"id": "linkedin",
@@ -35,7 +35,7 @@
3535
"image": "assets/images/alumni/vinayak-nayar.webp",
3636
"firstName": "Vinayak",
3737
"lastName": "Nayar",
38-
"quote": "When life gives you Amity, join ALiAS.",
38+
"description": "GSoC'23 @Sugarlabs",
3939
"social": [
4040
{
4141
"id": "linkedin",
@@ -51,7 +51,7 @@
5151
"image": "assets/images/alumni/sagar-deep.webp",
5252
"firstName": "Sagar",
5353
"lastName": "Deep",
54-
"quote": "Improvise, adapt and overcome.",
54+
"description": "Full Stack Dev",
5555
"social": [
5656
{
5757
"id": "linkedin",
@@ -67,7 +67,7 @@
6767
"image": "assets/images/alumni/achintya-singh.webp",
6868
"firstName": "Achintya",
6969
"lastName": "Singh",
70-
"quote": "Trust in the lifeforce of the deep mystery and your code.",
70+
"description": "GSoC'24 @Videolan, Backend dev @Aftershoot",
7171
"social": [
7272
{
7373
"id": "linkedin",
@@ -83,7 +83,7 @@
8383
"image": "assets/images/alumni/vipul-gupta.webp",
8484
"firstName": "Vipul",
8585
"lastName": "Gupta",
86-
"quote": "Life is vanilla, when it's butterscotch, then you just need to ride the bumps 🐣",
86+
"description": "Product Owner @Balena, GSoC'18,19",
8787
"social": [
8888
{
8989
"id": "linkedin",
@@ -99,7 +99,7 @@
9999
"image": "assets/images/alumni/dishant-sethi.webp",
100100
"firstName": "Dishant",
101101
"lastName": "Sethi",
102-
"quote": "Embrace the lessons, celebrate the memories and continue the legacy of ALiAS",
102+
"description": "Founder @Prodinit",
103103
"social": [
104104
{
105105
"id": "linkedin",
@@ -115,7 +115,7 @@
115115
"image": "assets/images/alumni/venkatesh.webp",
116116
"firstName": "Venkatesh",
117117
"lastName": "Chaturvedi",
118-
"quote": "You only live once! So use Archlinux and enjoy life.",
118+
"description": "Support Engineer @Atlasssian, SIH'22 Winner",
119119
"social": [
120120
{
121121
"id": "linkedin",
@@ -131,7 +131,7 @@
131131
"image": "assets/images/alumni/anuvrat-parashar.webp",
132132
"firstName": "Anuvrat",
133133
"lastName": "Parashar",
134-
"quote": "Help will always be given at ALiAS to those who ask for it.🦉",
134+
"description": "Founder @Essentia.dev",
135135
"social": [
136136
{
137137
"id": "linkedin",
@@ -147,7 +147,7 @@
147147
"image": "assets/images/alumni/nikhil-maan.webp",
148148
"firstName": "Nikhil",
149149
"lastName": "Maan",
150-
"quote": "",
150+
"description": "Devloper and maitaner @Sympy, GSoC'19,20,21",
151151
"social": [
152152
{
153153
"id": "linkedin",
@@ -163,7 +163,7 @@
163163
"image": "assets/images/alumni/aniket-maithani.webp",
164164
"firstName": "Aniket",
165165
"lastName": "Maithani",
166-
"quote": "",
166+
"description": "CTO @GetPlus",
167167
"social": [
168168
{
169169
"id": "linkedin",

src/components/Alumni/Alumni.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const Alumni = () => {
3535
image={item.image}
3636
firstName={item.firstName}
3737
lastName={item.lastName}
38-
quote={item.quote}
38+
description={item.description}
3939
socials={item.social}
4040
/>
4141
)

src/components/Reusables/AlumniItem/AlumniItem.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import styles from "./AlumniItem.module.css"
99
* @param {string} props.image - The URL of the alumni's image.
1010
* @param {string} props.firstName - The first name of the alumni.
1111
* @param {string} props.lastName - The last name of the alumni.
12-
* @param {string} props.quote - The quote or message from the alumni.
12+
* @param {string} props.description - The description or message from the alumni.
1313
* @param {Array} props.socials - An array of social media objects for the alumni.
1414
* @returns {JSX.Element} - The rendered alumni item component.
1515
*/
16-
const AlumniItem = ({ image, firstName, lastName, quote, socials }) => {
16+
const AlumniItem = ({ image, firstName, lastName, description, socials }) => {
1717
return (
1818
<div className={styles.alumni_item}>
1919
<div className={styles.alumni_item__detail}>
@@ -24,8 +24,8 @@ const AlumniItem = ({ image, firstName, lastName, quote, socials }) => {
2424
<h1 className={styles.alumni_item__lastname}>{lastName}</h1>
2525
</div>
2626
<div className={styles.alumni_item__container}>
27-
<div className={styles.alumni_item__quote}>
28-
<p className={styles.alumni_item__quote_text}>{quote}</p>
27+
<div className={styles.alumni_item__description}>
28+
<p className={styles.alumni_item__description_text}>{description}</p>
2929
</div>
3030
{socials && <SocialRow socials={socials} />}
3131
</div>

src/components/Reusables/AlumniItem/AlumniItem.module.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
width: 16rem;
5757
}
5858

59-
.alumni_item__quote {
59+
.alumni_item__description {
6060
display: flex;
6161
align-items: center;
6262
border: 6px solid var(--color-accent);
@@ -70,7 +70,7 @@
7070
background-color: #61adfe1c;
7171
}
7272

73-
.alumni_item__quote_text {
73+
.alumni_item__description_text {
7474
font-family: "JetBrains Mono", monospace;
7575
font-size: var(--font-medium-s);
7676
font-weight: 400;
@@ -100,7 +100,7 @@
100100
top: 1.5rem;
101101
}
102102

103-
.alumni_item__quote {
103+
.alumni_item__description {
104104
height: 10rem;
105105
width: 10rem;
106106
border-radius: 2rem;
@@ -111,7 +111,7 @@
111111
font-size: var(--font-medium-s);
112112
}
113113

114-
.alumni_item__quote_text {
114+
.alumni_item__description_text {
115115
font-size: var(--font-small);
116116
padding: var(--margin-small);
117117
}

0 commit comments

Comments
 (0)