Rinze/src/routes/contact.svelte

27 lines
797 B
Svelte

<script>
import PageHeader from '$lib/components/PageHeader.svelte';
</script>
<svelte:head>
<title>Damillora: Contact</title>
</svelte:head>
<div class="page">
<PageHeader>
<h1 class="page-header__heading">Contact</h1>
</PageHeader>
<main class="container mx-auto main">
<p>You can contact me via various channels.</p>
<h2>Email: damillora(at)damillora.com</h2>
<p>
Emails are perfect for long-form correspondences. If you want to discuss about larger projects
or you're a corporation, I highly recommend using email.
</p>
<h2>Twitter: <a href="https://twitter.com/Damillora">Damillora</a></h2>
<p>
If you're a VTuber and want to collaborate, please send me a Direct Message my way via
Twitter! I will gladly help set up the things needed.
</p>
</main>
</div>