add live statistics
All checks were successful
deploy / build-and-deploy (push) Successful in 22s

This commit is contained in:
2025-11-11 01:53:56 +01:00
parent dfc1425c6b
commit 5ce2db9040
26 changed files with 1168 additions and 817 deletions

View File

@@ -1,13 +1,12 @@
---
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-solid' }]
links: [{ name: 'Website', href: 'https://mhsl.eu/aboutme/', iconClass: 'iconify-[heroicons--globe-alt-solid]' }]
},
{
name: 'Jannik',
@@ -23,13 +22,19 @@ const team = [
name: 'Ruben',
nickname: 'bytedream',
roles: ['Softwareentwicklung'],
links: [{ name: 'Website', href: 'https://bytedream.dev', icon: 'heroicons:globe-alt-solid' }]
links: [{ name: 'Website', href: 'https://bytedream.dev', iconClass: 'iconify-[heroicons--globe-alt-solid]' }]
},
{
name: 'Lars',
nickname: '28Pupsi28',
roles: ['Support', 'Softwareentwicklung'],
links: [{ name: 'Website', href: 'https://mathemann.ddns.net/turtle_game/', icon: 'heroicons:globe-alt-solid' }]
links: [
{
name: 'Website',
href: 'https://mathemann.ddns.net/turtle_game/',
iconClass: 'iconify-[heroicons--globe-alt-solid]'
}
]
},
{
name: 'Hanad',
@@ -73,7 +78,7 @@ const team = [
target="_blank"
title={link.name}
>
<Icon name={link.icon} size={22} />
<span class="iconify size-[22px]" class:list={[link.iconClass]} />
</a>
))}
</div>