webcompile/src/routes/team/+page.svelte

98 lines
1.7 KiB
Svelte
Raw Normal View History

2022-07-03 01:23:41 +05:30
<script lang="ts">
2022-08-08 10:50:03 +05:30
import { CardInner, CardOuter, Link, LinksOuter } from "$lib/Card";
2022-08-04 20:00:24 +05:30
import members from "$lib/Team.json";
2022-07-03 01:23:41 +05:30
</script>
<svelte:head>
2022-08-04 20:00:24 +05:30
<title>Our team | Project Segfault</title>
2022-12-27 20:58:47 +05:30
<meta
name="description"
content="Team members of Project Segfault."
/>
2022-07-03 01:23:41 +05:30
</svelte:head>
2022-08-07 19:05:50 +05:30
<h1>Our team</h1>
<CardOuter>
2022-09-10 21:28:19 +05:30
{#each members as { name, discord, matrix, position, description, github, git, pgp, website, email, picture }}
2022-12-27 20:58:47 +05:30
<CardInner
title={name}
{position}
{description}
>
2022-08-08 10:50:03 +05:30
<LinksOuter>
{#if matrix}
2022-12-27 20:58:47 +05:30
<Link
url={matrix}
class="matrixcolored"
>
2022-08-12 16:45:39 +05:30
<div class="i-simple-icons:matrix" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
{#if discord}
2022-12-27 20:58:47 +05:30
<Link
url={discord}
class="discordcolored"
>
2022-08-12 16:45:39 +05:30
<div class="i-simple-icons:discord" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
2022-09-10 21:28:19 +05:30
{#if github}
2022-12-27 20:58:47 +05:30
<Link
url={github}
class="githubcolored"
>
2022-09-10 21:28:19 +05:30
<div class="i-simple-icons:github" />
</Link>
{/if}
2022-08-11 18:00:23 +05:30
{#if git}
2022-12-27 20:58:47 +05:30
<Link
url={git}
class="gitcolored"
>
2022-08-12 16:45:39 +05:30
<div class="i-simple-icons:git" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
{#if website}
2022-12-27 20:58:47 +05:30
<Link
url={website}
class="web"
>
<div class="i-ic:outline-language" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
{#if email}
2022-12-27 20:58:47 +05:30
<Link
url="mailto:{email}"
class="email"
>
<div class="i-ic:outline-mail" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
{#if pgp}
2022-12-27 20:58:47 +05:30
<Link
url={pgp}
class="pgp"
>
<div class="i-ic:outline-vpn-key" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
{#if picture}
2022-12-27 20:58:47 +05:30
<Link
url={picture}
class="picture"
>
<div class="i-ic:outline-photo-camera" />
2022-08-07 19:05:50 +05:30
</Link>
{/if}
2022-08-08 10:50:03 +05:30
</LinksOuter>
</CardInner>
{/each}
2022-08-12 16:45:39 +05:30
</CardOuter>