Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions src/sections/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,20 @@ const FooterComponent: React.FC = () => (
<div className="FooterWrapper footer-text">
<div className="footer-row">
<h3>Let's get in touch.</h3>
<button
className="button-yellow"
onClick={(): Window | null => window.open("/contact", "_self")}
>
Contact Us
</button>
<div className = "footer-buttons">
<button
className="button-yellow"
onClick={(): Window | null => window.open("/contact", "_self")}
>
Contact Us
</button>
<button
className ="button-yellow"
onClick={(): Window | null => window.open("/contact", "_self")}
>
Support Us
</button>
</div>
</div>
<div className="footer-row">
<div className="LogoWrapper">
Expand Down
5 changes: 3 additions & 2 deletions src/static/copy/Sponsors/Sponsors.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[
{
"title": "We Can't Do it Without You!",
"text": "Our sponsors are the difference between a group of dreamy-eyed students and a team working on a functional Hyperloop pod. They’ve played a key role in our team’s every success, and we depend on them to make our vision possible. We’re incredibly grateful to all of our sponsors for their generous support. If you’re interested in what we’re building and would like to support us, please get in touch at sponsorship@waterloop.ca!",
"link": "sponsors"
"text": "Our sponsors are the difference between a group of dreamy-eyed students and a team working on a functional Hyperloop pod. They’ve played a vital role in our team’s every success, and we depend on them to make our vision possible. We’re incredibly grateful to all of our sponsors for their generous support. If you’re interested in what we’re building and would like to support us, please get in touch by using the form below!" ,
"link": "contact",
"linkText": "Sponsor Us"
}
]
11 changes: 10 additions & 1 deletion src/theme/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ textarea {
overflow: hidden;
}
}

.footer-row {
display: flex;
justify-content: space-between;
Expand All @@ -199,6 +200,14 @@ textarea {
}
}
}

.footer-buttons{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center
}

.button-yellow {
border: 2px solid $yellow;
background-color: $navy;
Expand All @@ -209,7 +218,7 @@ textarea {
border-radius: 15px;
height: 50px;
width: 150px;
margin: 0 100px 0 0;
margin: 5px 100px 5px 0;
transition: all 0.3s;
&:hover {
background-color: $yellow;
Expand Down