diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index 6aa24b1..5c0548e 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -23,6 +23,7 @@ function Footer() {
Copyright Free Code Camp Columbus 2023 - {new Date().getFullYear()}
+ ); } diff --git a/src/components/Members.jsx b/src/components/Members.jsx index 05c80d2..5d3f726 100644 --- a/src/components/Members.jsx +++ b/src/components/Members.jsx @@ -1,16 +1,20 @@ function Members() { const admin = [ - { name: 'John', imgUrl: '/head.png' }, - { name: 'Amy', imgUrl: '/head.png' }, - { name: 'Kevin', imgUrl: '/head.png' }, + { id: 0, firstName: 'John', lastName: 'Riley', title: 'Admin & Coding Mentor', imgUrl: 'https://avatars.githubusercontent.com/u/41979303?v=4' }, + { id: 1, firstName: 'Kent', lastName: 'Utterback', title: 'Admin Emeritus & Coding Mentor', imgUrl: 'https://avatars.githubusercontent.com/u/17324971?v=4' }, + { id: 2, firstName: 'Amy', lastName: 'Bedinghaus', title: 'Admin Emeritus', imgUrl: 'https://avatars.githubusercontent.com/u/28076677?v=4' }, + { id: 3, firstName: 'Austin', lastName: 'Truss', title: 'Admin Emeritus', imgUrl: 'https://media.licdn.com/dms/image/C5603AQGQpynBhWiZLA/profile-displayphoto-shrink_200_200/0/1517355585710?e=1696464000&v=beta&t=DrPEzm5U1we4G7qUPoFrAA5gw_MHSN3dU8_02iWZYRA' }, + { id: 4, firstName: 'Kevin', lastName: 'Bruland', title: 'Admin Emeritus', imgUrl: 'https://avatars.githubusercontent.com/u/17850505?v=4' }, + { id: 5, firstName: 'Sarah', lastName: 'Lilly-Bruland', title: 'Admin Emeritus', imgUrl: 'https://avatars.githubusercontent.com/u/17872422?v=4' }, + { id: 6, firstName: 'Justin', lastName: 'Woodward', title: 'Admin Emeritus', imgUrl: 'https://avatars.githubusercontent.com/u/17994108?v=4' }, ] const members = [ - { name: 'John', imgUrl: '/head.png' }, - { name: 'Ismael', imgUrl: '/head.png' }, - { name: 'Nirvignesh', imgUrl: '/head.png' }, - { name: 'Tijana', imgUrl: '/head.png' }, - { name: 'Jennifer', imgUrl: '/head.png' }, - { name: 'Kellan', imgUrl: '/head.png' }, + { id: 0, name: 'John', imgUrl: '/head.png' }, + { id: 1, name: 'Ismael', imgUrl: '/head.png' }, + { id: 2, name: 'Nirvignesh', imgUrl: '/head.png' }, + { id: 3, name: 'Tijana', imgUrl: '/head.png' }, + { id: 4, name: 'Jennifer', imgUrl: '/head.png' }, + { id: 5, name: 'Kellan', imgUrl: '/head.png' }, ] return (