Rinze/src/routes/contact.svelte

24 lines
768 B
Svelte
Raw Normal View History

2021-01-24 18:21:43 +00:00
<script>
2022-07-24 16:25:35 +00:00
import Hero from '@damillora/plachta/components/Hero/Hero.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte';
2021-01-24 18:21:43 +00:00
</script>
<svelte:head>
2021-05-13 21:28:48 +00:00
<title>Damillora: Contact</title>
2021-01-24 18:21:43 +00:00
</svelte:head>
2022-07-24 16:25:35 +00:00
<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>