2023-12-04 13:45:07 +00:00
|
|
|
import "../styles/pages/contact.scss";
|
2023-11-09 13:55:27 +00:00
|
|
|
|
2024-01-05 00:29:38 +00:00
|
|
|
function contact() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div class="contact">
|
|
|
|
<h1>Contact</h1>
|
|
|
|
<section class="contact">
|
|
|
|
<a href="mailto:contact@moonleay.net" target="_blank">
|
|
|
|
<img
|
|
|
|
src="https://static.moonleay.net/img/lilJuddWeb/logos/email.svg"
|
|
|
|
alt="Email"
|
|
|
|
/>
|
|
|
|
contact@moonleay.net
|
|
|
|
</a>
|
|
|
|
<a
|
|
|
|
href="https://discord.com/users/372703841151614976"
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<img
|
|
|
|
src="https://static.moonleay.net/img/lilJuddWeb/logos/discord.svg"
|
|
|
|
alt="Discord"
|
|
|
|
/>
|
|
|
|
@moonleay
|
|
|
|
</a>
|
|
|
|
<a href="https://discord.gg/HTZRktfH4A" target="_blank">
|
|
|
|
<img
|
|
|
|
src="https://static.moonleay.net/img/lilJuddWeb/logos/discord.svg"
|
|
|
|
alt="discord"
|
|
|
|
/>
|
|
|
|
li'l Judd's home base
|
|
|
|
</a>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default contact;
|