mirror of
https://github.com/bartvdbraak/hellob.art.git
synced 2025-04-26 17:11:21 +00:00
feat: added a contact page
This commit is contained in:
parent
f452a99f29
commit
b6d045e243
1 changed files with 29 additions and 0 deletions
29
src/routes/contact/+page.svelte
Normal file
29
src/routes/contact/+page.svelte
Normal 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>
|
Loading…
Reference in a new issue