Rinze/src/routes/contact/+page.svelte

25 lines
710 B
Svelte

<script>
import { Hero, Container, Index } from '@damillora/plachta';
</script>
<svelte:head>
<title>Damillora: Contact</title>
</svelte:head>
<Container>
<Index>
<h1>Contact</h1>
<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>
</Index>
</Container>