feat: add new site

This commit is contained in:
Alexander Daichendt 2022-07-26 00:25:51 +02:00
parent 53738961bb
commit 532a32db68
27 changed files with 1198 additions and 1328 deletions

27
src/routes/contact.svelte Normal file
View file

@ -0,0 +1,27 @@
<script>
import { mdiEmailEditOutline } from '@mdi/js';
import { mdiGithub } from '@mdi/js';
import Icon from 'mdi-svelte';
import Link from '../components/Link.svelte';
</script>
<h1>Contact Information</h1>
<ul>
<li>
<Icon path={mdiEmailEditOutline} />
E-Mail: <Link disableIcon href="mailto:me@daichendt.one">me@daichendt.one</Link>
</li>
<li>
<Icon path={mdiGithub} />
Github: <Link disableIcon href="https://github.com/AlexDaichendt">AlexDaichendt</Link>
</li>
</ul>
I don't use any social media.
<style>
ul {
list-style-type: none;
}
</style>