Skip to content

Commit

Permalink
Fix broken lesson contributor links (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtbruns committed Jan 30, 2024
1 parent 4122e74 commit ddc64d8
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
3 changes: 1 addition & 2 deletions components/AboutPageGallery/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const TeamMemberLinks = ({ links }) => {

const TeamMember = ({ name, role, imageSrc, links }) => {
return (
<div className={styles.teamMember}>
<div className={styles.teamMember} id={name.toLowerCase().split(' ').join('-')}>
<div className={styles.headshot}>
<img src={imageSrc} alt={name} />
</div>
Expand All @@ -48,5 +48,4 @@ const AboutPageGallery = () => {
);
};


export { AboutPageGallery, TeamMember };
1 change: 1 addition & 0 deletions components/AboutPageGallery/index.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
.teamMember {
text-align: center;
width: 200px;
padding-top: 1.5rem;

.headshot {
width: 100%;
Expand Down
8 changes: 4 additions & 4 deletions data/credits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
- name: James Schloss
link: /about#james-schloss
- name: Josh Pullen
link: /about#josh-pullen-2021-intern
link: /about#josh-pullen
- name: River Way
link: /about#river-way-2021-intern
link: /about#river-way
- name: Kurt Bruns
link: /about#kurt-bruns-artist
link: /about#kurt-bruns
- name: Vivek Verma
link: /about#vivek-verma-2021-intern
link: /about#vivek-verma
11 changes: 8 additions & 3 deletions data/teamMemberData.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,14 @@ const teamMembers = [
imageSrc: "images/about/kurt-bruns.png",
links: [
{
icon: "fab fa-github",
url: "https://kurtbruns.github.io/",
label: "Kurt's Github",
icon: "fab fa-youtube",
url: "https://www.youtube.com/@wumbo_dot_net",
label: "Kurt's Youtube",
},
{
icon: "fa-solid fa-globe",
url: "https://kurtbruns.com/",
label: "Kurt's Website",
},
],
},
Expand Down

0 comments on commit ddc64d8

Please sign in to comment.