diff --git a/src/pages/team.astro b/src/pages/team.astro index 6ea1634..94d2557 100644 --- a/src/pages/team.astro +++ b/src/pages/team.astro @@ -1,11 +1,13 @@ --- import WebsiteLayout from '@layouts/website/WebsiteLayout.astro'; +import { Icon } from 'astro-icon/components'; + const team = [ { name: 'Elias', nickname: 'MineTec', roles: ['Gründer', 'Support', 'Organisation', 'Softwareentwicklung', 'Systemadministrator'], - links: [{ name: 'Website', href: 'https://mhsl.eu/aboutme/', icon: 'heroicons:globe-alt' }] + links: [{ name: 'Website', href: 'https://mhsl.eu/aboutme/', icon: 'heroicons:globe-alt-solid' }] }, { name: 'Jannik', @@ -16,7 +18,7 @@ const team = [ name: 'Ruben', nickname: 'bytedream', roles: ['Softwareentwicklung'], - links: [{ name: 'Website', href: 'https://bytedream.dev', icon: 'heroicons:globe-alt' }] + links: [{ name: 'Website', href: 'https://bytedream.dev', icon: 'heroicons:globe-alt-solid' }] }, { name: 'Hanad', @@ -34,7 +36,7 @@ const team = [ team.map((member) => (
-
+

{member.roles.join(' · ')}

+ {member.links && ( +
+
+
+ {member.links.map((link) => ( + + + + ))} +
+
+ )}