From 211c6cf3ea502a5bbccb96bcaf877a880e77ec5b Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Wed, 24 Dec 2025 13:19:10 +0100 Subject: [PATCH] Changed variable names --- src/components/TeamMember.jsx | 6 +++--- src/data/content.js | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/TeamMember.jsx b/src/components/TeamMember.jsx index 2137b89..cdded30 100644 --- a/src/components/TeamMember.jsx +++ b/src/components/TeamMember.jsx @@ -4,7 +4,7 @@ import {Github, Mail, Globe} from 'lucide-react'; import {ObfuscatedMail} from './ObfuscatedMail'; import {ROLES} from '../data/content'; -export const TeamMember = ({name, nickname, img, gh, email, website, roles}) => ( +export const TeamMember = ({name, nickname, imageLink, githubLink, email, website, roles}) => (
- {name} + {name}
@@ -55,7 +55,7 @@ export const TeamMember = ({name, nickname, img, gh, email, website, roles}) => - diff --git a/src/data/content.js b/src/data/content.js index ebf1084..e03f05a 100644 --- a/src/data/content.js +++ b/src/data/content.js @@ -20,8 +20,8 @@ export const TEAM_MEMBERS = [ name: "Felix", nickname: "Flixcoo", roles: [0, 1], - img: "https://github.com/flixcoo.png", - gh: "https://github.com/flixcoo", + imageLink: "https://github.com/flixcoo.png", + githubLink: "https://github.com/flixcoo", email: "felix@liquid-dev.de", website: "https://felixkirchner.de" }, @@ -29,8 +29,8 @@ export const TEAM_MEMBERS = [ name: "Yannick", nickname: "Gelbeinhalb", roles: [0, 1], - img: "https://github.com/GelbEinhalb.png", - gh: "https://github.com/GelbEinhalb", + imageLink: "https://github.com/GelbEinhalb.png", + githubLink: "https://github.com/GelbEinhalb", email: "yannick@liquid-dev.de", website: "https://yannick-weigert.de" }, @@ -38,8 +38,8 @@ export const TEAM_MEMBERS = [ name: "Mathis", nickname: "Sneeex", roles: [0, 1], - img: "https://github.com/sneeex.png", - gh: "https://github.com/sneeex", + imageLink: "https://github.com/sneeex.png", + githubLink: "https://github.com/sneeex", email: "mathis@liquid-dev.de", website: "https://mathiskirchner.de" }