Compare commits
2 Commits
bb010952a8
...
2a04c8180a
Author | SHA1 | Date | |
---|---|---|---|
2a04c8180a | |||
1f1f8793e2 |
@ -1,39 +1,24 @@
|
||||
---
|
||||
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',
|
||||
nickname: 'Goldi187',
|
||||
roles: ['Support', 'Organisation']
|
||||
},
|
||||
{
|
||||
name: 'Adrian',
|
||||
nickname: 'h0nny27',
|
||||
roles: ['Support']
|
||||
},
|
||||
{
|
||||
name: 'Ruben',
|
||||
nickname: 'bytedream',
|
||||
roles: ['Softwareentwicklung'],
|
||||
links: [{ name: 'Website', href: 'https://bytedream.dev', icon: 'heroicons:globe-alt' }]
|
||||
},
|
||||
{
|
||||
name: 'Lars',
|
||||
nickname: '28Pupsi28',
|
||||
roles: ['Support', 'Softwareentwicklung'],
|
||||
links: [
|
||||
{
|
||||
name: 'Website',
|
||||
href: 'https://mathemann.ddns.net/turtle_game/',
|
||||
icon: 'heroicons:globe-alt'
|
||||
}
|
||||
]
|
||||
links: [{ name: 'Website', href: 'https://bytedream.dev', icon: 'heroicons:globe-alt-solid' }]
|
||||
},
|
||||
{
|
||||
name: 'Hanad',
|
||||
@ -51,7 +36,7 @@ const team = [
|
||||
team.map((member) => (
|
||||
<div class="card max-w-96 bg-base-200">
|
||||
<div class="card-body px-4 py-6">
|
||||
<div class="flex flex-col items-center">
|
||||
<div class="relative flex flex-col items-center">
|
||||
<div class="avatar placeholder mb-2">
|
||||
<div class="bg-neutral text-neutral-content w-24 rounded-xl">
|
||||
<img
|
||||
@ -66,6 +51,23 @@ const team = [
|
||||
{member.name} · {member.nickname}
|
||||
</p>
|
||||
<p class="text-center text-sm font-light">{member.roles.join(' · ')}</p>
|
||||
{member.links && (
|
||||
<div class="absolute top-0 right-2 h-24 flex">
|
||||
<div class="divider divider-horizontal mx-2" />
|
||||
<div class="flex items-center">
|
||||
{member.links.map((link) => (
|
||||
<a
|
||||
class="flex w-9 h-9 justify-center items-center border rounded-full border-base-content"
|
||||
href={link.href}
|
||||
target="_blank"
|
||||
title={link.name}
|
||||
>
|
||||
<Icon name={link.icon} size={22} />
|
||||
</a>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user