Skip to content

Commit

Permalink
feat: Add web team members to CoreTeamPage component
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl committed Apr 24, 2024
1 parent 8374790 commit 6a91374
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions src/app/(content)/team/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@ const coreTeam = [
`${tiaraAssetsPrefix}/coreteam/website.avif`,
];

const webTeam = [
`${tiaraAssetsPrefix}/webteam/anish.avif`,
`${tiaraAssetsPrefix}/webteam/rabil.avif`,
`${tiaraAssetsPrefix}/webteam/jenison.avif`,
`${tiaraAssetsPrefix}/webteam/joywin.avif`,
`${tiaraAssetsPrefix}/webteam/vyshnav.avif`,
`${tiaraAssetsPrefix}/webteam/vineeth_.avif`,
`${tiaraAssetsPrefix}/webteam/melroy.avif`,
`${tiaraAssetsPrefix}/webteam/nithin.avif`,
`${tiaraAssetsPrefix}/webteam/uthpal.avif`,
`${tiaraAssetsPrefix}/webteam/vaibhav.avif`,
];

export default function CoreTeamPage() {
return (
<div className="h-fit">
Expand Down Expand Up @@ -66,6 +79,44 @@ export default function CoreTeamPage() {
})}
</div>
</div>
<div className="-ml-5 flex justify-center items-center -mt-16 z-50">
<div
className={cn(
"text-4xl xs:text-5xl sm:text-6xl md:text-7xl lg:text-8xl w-fit text-center duration-500",
tiaraFont.className
)}
>
<h1 className="text-4xl xs:text-5xl sm:text-6xl md:text-7xl lg:text-8xl">
Website Team
</h1>
</div>
</div>
<div className="w-full flex justify-center ">
<div className="p-14 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-16">
{webTeam.map((card, index) => {
return (
<CardContainer
key={index}
containerClassName="relative flex items-center justify-center transition-all duration-200 ease-linear"
>
<CardBody className="relative">
<CardItem translateZ="100" className="w-full mt-4">
<Image
src={card}
className="rounded-xl "
alt="thumbnail"
width={1200}
height={800}
priority
sizes="(max-width: 640px) 100vw, (max-width: 1023px) 50vw, 33vw"
/>
</CardItem>
</CardBody>
</CardContainer>
);
})}
</div>
</div>
</div>
);
}

0 comments on commit 6a91374

Please sign in to comment.