feat: added a contact page

This commit is contained in:
Bart van der Braak 2023-07-20 01:57:15 +02:00
parent f452a99f29
commit b6d045e243

View file

@ -0,0 +1,29 @@
<main>
<h1>Get in Touch!</h1>
<p>If you want to chat about cats, whiskey, or anything else, don't hesitate to reach out:</p>
<a href="mailto:bart@vanderbraak.nl" class="contact-email">bart@vanderbraak.nl</a>
<p>Looking forward to hearing from you!</p>
</main>
<style>
main {
text-align: center;
padding: 1rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.contact-email {
font-size: 1.2rem;
text-decoration: none;
color: #007bff;
transition: color 0.2s ease-in-out;
}
.contact-email:hover {
color: #0056b3;
}
</style>