Skip to content

Commit

Permalink
161 judges profiles aligned (#168)
Browse files Browse the repository at this point in the history
Co-authored-by: Justin Pham <[email protected]>
Co-authored-by: Burton Jong <[email protected]>
  • Loading branch information
3 people authored Dec 7, 2024
1 parent 752516d commit c9fde4e
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/components/LandingPage/JudgeShowcase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ export default async function JudgeShowcase() {
</div>
<div className="flex w-full flex-row flex-wrap">
{judges.map((judge, index) => (
<div
className="flex w-1/2 flex-row py-10 sm:w-1/3 sm:justify-center"
key={index}
>
<div className="flex flex-row gap-2 sm:gap-3">
<div className="relative size-16 min-w-16 overflow-hidden rounded-full sm:size-24 sm:min-w-24">
<div className="flex w-1/3 justify-center py-5 pl-7" key={index}>
<div className="flex flex-row items-center gap-4">
<div className="relative size-16 overflow-hidden rounded-full sm:size-24">
<Image
src={
judge.fields.judgeImg.fields.file?.url
Expand All @@ -37,10 +34,10 @@ export default async function JudgeShowcase() {
/>
</div>
<div className="flex flex-col justify-center">
<p className="text-xs font-extrabold text-awesome-purple sm:text-base">
<p className="w-36 text-xs font-extrabold text-awesome-purple sm:text-base">
{judge.fields.judgeName}
</p>
<p className="text-xs sm:text-base">
<p className="w-36 text-xs sm:text-base">
{judge.fields.judgeCompany}
</p>
</div>
Expand Down

0 comments on commit c9fde4e

Please sign in to comment.