Skip to content

Commit

Permalink
create contact page
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed Jan 10, 2024
1 parent a9387c6 commit 132ab54
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
44 changes: 44 additions & 0 deletions src/components/Contact.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<div class="container">
<h4 id="contact">CONTACT US</h4>
<div class="spacer"></div>
<div class="row">
<h3>Any other&nbsp;</h3><h2>questions?</h2>
</div>
<div class="spacer"></div>
<p class="description">We are here to help you! Please check the FAQ first;
If your question is not already answered,
you can reach us at <a class="email" href="mailto:[email protected]">[email protected]</a>.<br>
<br>
Please email <a class="email" href="mailto:[email protected]">[email protected]</a> if you need a particular accommodation.
Note that requests made less than 24 hours before the event will likely not be accommodated.
</p>
</div>

<style lang="scss">
div.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
width: 46.5rem;
margin: 0 auto;
}
div.spacer {
height: 1.5rem;
}

div.row {
display: flex;
flex-direction: row;
// justify-content: center;
}

p.description {
font-weight: 400;
}

a.email {
line-height: 150%;
text-decoration-line: underline; // the underline is too close to the text...
}
</style>
2 changes: 2 additions & 0 deletions src/styles/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ h3 {

h4 {
font-family: fonts.$mono;
letter-spacing: 0.8px;
font-size: 1rem;
font-weight: 400;
}

h5 {
Expand Down

0 comments on commit 132ab54

Please sign in to comment.