feat: add new site
This commit is contained in:
parent
53738961bb
commit
532a32db68
27 changed files with 1198 additions and 1328 deletions
27
src/routes/contact.svelte
Normal file
27
src/routes/contact.svelte
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue