Skip to content

Commit 91e6a89

Browse files
committed
Name added to contributor page
1 parent fc10c10 commit 91e6a89

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

app/Contributors/contributor.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client'
22
import Link from 'next/link'
33
import React, { useEffect } from 'react'
4-
import {AdrianKnight, Andre, SamuelE, Shanmukhche, Sklimas101, SrijanS, Manh_Phan, ZiJunW} from '../components/UserCard'
4+
import {AdrianKnight, Andre, SamuelE, Shanmukhche, Sklimas101, SrijanS, Manh_Phan, ZiJunW, SathvikL} from '../components/UserCard'
55

66
const ContributorPage = ( {isDarkMode, productListRef}) => {
77

@@ -16,6 +16,7 @@ const ContributorPage = ( {isDarkMode, productListRef}) => {
1616
<SamuelE/>
1717
<ZiJunW/>
1818
<Manh_Phan/>
19+
<SathvikL/>
1920
<Shanmukhche/>
2021
<Sklimas101/>
2122
<SrijanS/>

app/components/UserCard.jsx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,21 @@ export const Manh_Phan = () => {
154154
</div>
155155
);
156156
};
157+
158+
export const SathvikL = () => {
159+
return (
160+
<div>
161+
<div className="flex justify-center align-middle bg-white shadow-contributor max-w-[380px] h-[100px] m-5 border-solid border-2 border-black">
162+
<Image className="rounded-[50%] border-green-500 border-[4px] -translate-x-[20%] -translate-y-4" src={profilePicShanmukh} width={100} height={100} alt="" />
163+
<div className="text-black text-center w-full self-center mr-5">
164+
<h3 className="text-2xl">
165+
Sathvik Ram Lanka
166+
</h3>
167+
<div>
168+
<Link href={"https://github.com/RamLanka05"} target="_blank">@RamLanka05</Link>
169+
</div>
170+
</div>
171+
</div>
172+
</div>
173+
);
174+
};

0 commit comments

Comments
 (0)