diff --git a/src/data/employeeImages.ts b/src/data/employeeImages.ts index 73d37a5..ed55dd6 100644 --- a/src/data/employeeImages.ts +++ b/src/data/employeeImages.ts @@ -21,7 +21,7 @@ import shristiManandhar from 'resources/employee/shristi.jpeg'; import shubhDhital from 'resources/employee/shubh.jpeg'; import smritiKafle from 'resources/employee/smriti.jpeg'; import subinaRajopadhyaya from 'resources/employee/subina.jpeg'; -import udayMaharjan from 'resources/employee/uday.jpeg'; +import udayMaharjan from 'resources/employee/uday.png'; import rup from 'resources/employee/rup.jpeg'; import sushmaAdhikari from 'resources/employee/sushma.jpeg'; import praneshShrestha from 'resources/employee/pranesh.jpeg'; @@ -30,7 +30,9 @@ import sudanBhandari from 'resources/employee/sudan-bhandari.jpeg'; import babinKarmacharya from 'resources/employee/babin-karmacharya.jpeg'; import shreyaBhattarai from 'resources/employee/shreya-bhattarai.jpeg'; import sushilTiwari from 'resources/employee/sushilTiwari.jpg'; -import roshaniPoudel from 'resources/employee/roshaniPoudel.jpg'; +import roshaniPoudel from 'resources/employee/roshani.png'; +import sudipKhanal from 'resources/employee/sudip.png'; +import sandeshThapa from 'resources/employee/sandesh.png'; import champaDevi from 'resources/employee/champa.jpeg'; @@ -71,6 +73,8 @@ const employeeImages: { 'tc-071': shreyaBhattarai, 'tc-072': sushilTiwari, 'tc-074': roshaniPoudel, + 'tc-076': sudipKhanal, + 'tc-077': sandeshThapa, }; // eslint-disable-next-line import/prefer-default-export diff --git a/src/data/employees.ts b/src/data/employees.ts index cadba6b..46e5c0c 100644 --- a/src/data/employees.ts +++ b/src/data/employees.ts @@ -45,7 +45,8 @@ export type EmployeeId = 'tc-001' | 'tc-072' | 'tc-073' | 'tc-074' -| 'tc-075'; +| 'tc-076' +| 'tc-077'; export interface Employee { id: EmployeeId; @@ -128,7 +129,7 @@ const udayMaharjan: Employee = { name: 'Uday Maharjan', position: 'Assistant Project Manager', funnyDescription: 'What is your school\'s name? School Maharjan', - description: 'Meet Uday, a 27-year-old man who is still trying to figure out what he wants to be when he grows up (because let\'s be real, at 26 you\'re basically a grown-up, right?). Despite his indecisiveness, Uday is a pretty cool dude. He\'s always up for a good time, whether it\'s cracking jokes with his friends or trying out a new restaurant in town. Uday is also an avid Liverpool FC fan, and can often be found cheering on his favorite team on game day.When he\'s not rooting for the home team, you might catch him going on hikes with his buddies or going on bike rides. In his spare time, Uday enjoys partying, playing video games, collecting KinderJoy toys and listening to music.He\'s also been known to dance every now and then (just don\'t ask him to dance). Overall, Uday is a fun- loving, easy-going guy who is always up for an adventure.', + description: 'Meet Uday, a 28-year-old man who is still trying to figure out what he wants to be when he grows up (because let\'s be real, at 28 you\'re basically a grown-up, right?). Despite his indecisiveness, Uday is a pretty cool dude. He\'s always up for a good time, whether it\'s cracking jokes with his friends or trying out a new restaurant in town. Uday is also an avid Liverpool FC fan, and can often be found cheering on his favorite team on game day.When he\'s not rooting for the home team, you might catch him going on hikes with his buddies or going on bike rides. In his spare time, Uday enjoys partying, playing video games, collecting KinderJoy toys and listening to music.He\'s also been known to dance every now and then (just don\'t ask him to dance). Overall, Uday is a fun- loving, easy-going guy who is always up for an adventure.', department: 'development', instagramLink: 'https://www.instagram.com/udaynwa', facebookLink: 'https://www.facebook.com/udaynwa', @@ -412,6 +413,27 @@ const roshaniPoudel: Employee = { instagramLink: 'https://www.instagram.com/_roshnipoudel', }; + +const sudipKhanal: Employee = { + id: 'tc-076', + name: 'Sudip Khanal', + position: 'Backend Trainee', + description: 'Om Namah Shivaya....🙏🏻', + department: 'development', + linkedInLink: 'https://www.linkedin.com/in/sudip-khanal-59b815270', + githubLink: 'https://github.com/sudip-khanal', + instagramLink: 'https://www.instagram.com/sudip057/profilecard/?igsh=MXMxNXljc2w3NXg0Yw==', +}; + +const sandeshThapa: Employee = { + id: 'tc-077', + name: 'Sandesh Thapa', + position: 'ML Trainee', + description: 'I am veg on Tuesday and Thursday. Sorry for the inconvenience.', + department: 'development', + linkedInLink: 'https://www.linkedin.com/in/sandesh-thapa-18375b215/', +}; + const employees: Employee[] = [ ankitMehta, adityaKhatri, @@ -445,6 +467,8 @@ const employees: Employee[] = [ shreyaBhattarai, sushilTiwari, roshaniPoudel, + sudipKhanal, + sandeshThapa, ]; export default employees; diff --git a/src/resources/employee/roshani.png b/src/resources/employee/roshani.png new file mode 100644 index 0000000..30d7ab5 Binary files /dev/null and b/src/resources/employee/roshani.png differ diff --git a/src/resources/employee/roshaniPoudel.jpg b/src/resources/employee/roshaniPoudel.jpg deleted file mode 100644 index f2031a8..0000000 Binary files a/src/resources/employee/roshaniPoudel.jpg and /dev/null differ diff --git a/src/resources/employee/sandesh.png b/src/resources/employee/sandesh.png new file mode 100644 index 0000000..c9ecc70 Binary files /dev/null and b/src/resources/employee/sandesh.png differ diff --git a/src/resources/employee/sudip.png b/src/resources/employee/sudip.png new file mode 100644 index 0000000..3b1ed01 Binary files /dev/null and b/src/resources/employee/sudip.png differ diff --git a/src/resources/employee/uday.jpeg b/src/resources/employee/uday.jpeg deleted file mode 100644 index b58fd3d..0000000 Binary files a/src/resources/employee/uday.jpeg and /dev/null differ diff --git a/src/resources/employee/uday.png b/src/resources/employee/uday.png new file mode 100644 index 0000000..b47e37c Binary files /dev/null and b/src/resources/employee/uday.png differ