Rinze/src/routes/contact.svelte

24 lines
768 B
Svelte

<script>
import Hero from '@damillora/plachta/components/Hero/Hero.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte';
</script>
<svelte:head>
<title>Damillora: Contact</title>
</svelte:head>
<Container>
<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>
</Container>