From 559d630db4c3ef68de3efb7a7bd0f293ee612d74 Mon Sep 17 00:00:00 2001 From: anirudh Date: Mon, 30 Oct 2023 10:27:40 +0530 Subject: [PATCH] feat: add data --- web/app/page.tsx | 2 +- web/app/team/page.tsx | 8 ++++---- web/components/ProjectCard.tsx | 8 +++++++- web/content/team_members.json | 10 ++++++++++ web/content/team_members_design.json | 5 +++++ web/content/team_members_managers.json | 10 ++++++++++ web/public/team/design/praful.jpeg | Bin 0 -> 33522 bytes web/public/team/management/rohith.jpeg | Bin 0 -> 77999 bytes web/public/team/management/sanvi.jpeg | Bin 0 -> 376295 bytes web/public/team/technical/abhijeet.jpeg | Bin 0 -> 3064818 bytes web/public/team/technical/vignesh.jpeg | Bin 0 -> 1348412 bytes 11 files changed, 37 insertions(+), 6 deletions(-) create mode 100644 web/public/team/design/praful.jpeg create mode 100644 web/public/team/management/rohith.jpeg create mode 100644 web/public/team/management/sanvi.jpeg create mode 100644 web/public/team/technical/abhijeet.jpeg create mode 100644 web/public/team/technical/vignesh.jpeg diff --git a/web/app/page.tsx b/web/app/page.tsx index 42ca0f1..7062fd2 100644 --- a/web/app/page.tsx +++ b/web/app/page.tsx @@ -262,7 +262,7 @@ export default function Home() { 650 ? "100px" : "5vw", paddingRight: screenWidth > 650 ? "100px" : "5vw" }} className='text-dark' ref={projectRef}> {projects.map((proj, i) => i) ? i : 0} key={"mem" + i} {...proj} />)} - projects.length) ? projects.length : 0} img='#' title='See All' subtitle='Groundbreaking Stuff' /> + projects.length) ? projects.length : 0} img='#' title='See All' subtitle='Groundbreaking Stuff :0' /> diff --git a/web/app/team/page.tsx b/web/app/team/page.tsx index ad21511..f5cb03d 100644 --- a/web/app/team/page.tsx +++ b/web/app/team/page.tsx @@ -32,13 +32,13 @@ export default function Team() { -

Meet The Team

+

Meet The Team

We’ve got a strong team filled with caffeine addicted developers, gradients loving designers and machine like working managers.

0.4 ? 'block' : 'none' }} className="flex flex-col gap-2 mt-8 pointer-events-auto">

setCurtab(0)} className={`${curtab === 0 ? "text-yellow underline underline-offset-4 team-tab-after" : "text-grey"} hover:text-yellow cursor-pointer`}>Board

-

setCurtab(1)} className={`${curtab === 1 ? "text-pastel_red underline underline-offset-4 team-tab-after" : "text-grey"} hover:text-pastel_red cursor-pointer`}>Techies

+

setCurtab(1)} className={`${curtab === 1 ? "text-pastel_green underline underline-offset-4 team-tab-after" : "text-grey"} hover:text-pastel_green cursor-pointer`}>Techies

setCurtab(2)} className={`${curtab === 2 ? "text-pastel_blue underline underline-offset-4 team-tab-after" : "text-grey"} hover:text-blue cursor-pointer`}>Designers

-

setCurtab(3)} className={`${curtab === 3 ? "text-pastel_green underline underline-offset-4 team-tab-after" : "text-grey"} hover:text-green cursor-pointer`}>Managers

+

setCurtab(3)} className={`${curtab === 3 ? "text-pastel_red underline underline-offset-4 team-tab-after" : "text-grey"} hover:text-red cursor-pointer`}>Managers

@@ -50,7 +50,7 @@ export default function Team() { {curtab === 0 ? team_members_board.map((mem, i) => ) : curtab === 1 ? team_members_technical.map((mem, i) => ) : curtab === 2 ? team_members_design.map((mem, i) => ) : team_members_managers.map((mem, i) => )}
-