Rinze/src/routes/(pages)/contact/+page.svelte

28 lines
860 B
Svelte

<script>
import { Hero, Container, Post } from '@damillora/plachta';
</script>
<svelte:head>
<title>Damillora: Contact</title>
</svelte:head>
<Container>
<Post>
<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>
You can also contact me via Twitter for shorter correspondences.
</p>
<h2>Discord: damillora</h2>
<p>
Please try to contact me via the two channels above first, correspondences will move to Discord when needed! I cannot guarantee any reply if you try to contact me via Discord directly.
</p>
</Post>
</Container>