Skip to content

Commit 0821259

Browse files
committed
wip
1 parent 9854e41 commit 0821259

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

src/Pages/TeamPage.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,22 @@ const teamMembers = [
1010
{
1111
name: "Kim Haapamäki",
1212
title: "Co-founder",
13+
email: "kim@rootpi.xyz",
1314
image: Kim,
1415
description:
1516
"M.Sc. Computer Science Engineering, LTH, Sweden. A passion for game development and Machine Learning. Developing Unity games, consulting expertise in VR/ML, mobile and web app development.",
1617
},
1718
{
1819
name: "Jesper Laurell",
1920
title: "Co-founder",
21+
email: "jesper@rootpi.xyz",
2022
image: Jesper,
2123
description:
2224
"M.Sc. Electrical Engineering, LTH, Sweden. Interested in UX, generative AI, game design, and incremental self improvement.",
2325
},
2426
];
2527

26-
const TeamMemberCard = ({ name, title, image, description }) => (
28+
const TeamMemberCard = ({ name, title, email, image, description }) => (
2729
<div className="flex flex-col items-center w-full bg-surface rounded-2xl border border-outline p-8 mb-4">
2830
<CircularImage
2931
className="w-[150px] h-[150px] md:w-[200px] md:h-[200px] object-cover mb-6"
@@ -38,6 +40,12 @@ const TeamMemberCard = ({ name, title, image, description }) => (
3840
<h3 className="text-xs md:text-sm text-ink-subtle mb-4 font-medium tracking-widest uppercase inline-block relative after:content-[''] after:absolute after:bottom-[-8px] after:left-1/2 after:-translate-x-1/2 after:w-8 after:h-0.5 after:bg-accent pb-2">
3941
{title}
4042
</h3>
43+
<a
44+
href={`mailto:${email}`}
45+
className="block text-sm font-semibold text-accent hover:text-accent-dark transition-colors duration-200 no-underline mt-2"
46+
>
47+
{email}
48+
</a>
4149
<p className="text-sm md:text-base leading-relaxed text-ink-muted mt-6">
4250
{description}
4351
</p>

0 commit comments

Comments
 (0)