Added a thank-you-page when user submits form
parent
7848de25e7
commit
49b519b015
@ -1,27 +1,30 @@
|
||||
const Footer = () => (
|
||||
<footer className="footer">
|
||||
<div className="container">
|
||||
<img src="/profile.png" width="100%" height="100%" alt="" className="profile" />
|
||||
<div className="branding">
|
||||
Guus van Meerveld <br />
|
||||
© 2021
|
||||
const Footer = () => {
|
||||
const year = new Date().getFullYear();
|
||||
return (
|
||||
<footer className="footer">
|
||||
<div className="container">
|
||||
<img src="/profile.png" width="100%" height="100%" alt="" className="profile" />
|
||||
<div className="branding">
|
||||
Guus van Meerveld <br />
|
||||
© {year}
|
||||
</div>
|
||||
<div className="socials">
|
||||
<a href="https://twitter.com/GuusvanMeerveld">
|
||||
<img src="/svg/twitter.svg" alt="" />
|
||||
</a>
|
||||
<a href="https://www.youtube.com/channel/UCYuqpoMay5SezCBrA_HKVWQ">
|
||||
<img src="/svg/youtube.svg" alt="" />
|
||||
</a>
|
||||
<a href="https://ko-fi.com/guusvanmeerveld">
|
||||
<img src="/svg/coffee.svg" alt="" />
|
||||
</a>
|
||||
<a href="https://github.com/guusvanmeerveld">
|
||||
<img src="/svg/github.svg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div className="socials">
|
||||
<a href="https://twitter.com/GuusvanMeerveld">
|
||||
<img src="/svg/twitter.svg" alt="" />
|
||||
</a>
|
||||
<a href="https://www.youtube.com/channel/UCYuqpoMay5SezCBrA_HKVWQ">
|
||||
<img src="/svg/youtube.svg" alt="" />
|
||||
</a>
|
||||
<a href="https://ko-fi.com/guusvanmeerveld">
|
||||
<img src="/svg/coffee.svg" alt="" />
|
||||
</a>
|
||||
<a href="https://github.com/guusvanmeerveld">
|
||||
<img src="/svg/github.svg" alt="" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
);
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
|
||||
export default Footer;
|
||||
|
@ -0,0 +1,26 @@
|
||||
.message {
|
||||
font-family: "Raleway";
|
||||
height: 100vh;
|
||||
width: 100vw;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
text-align: center;
|
||||
|
||||
.icon {
|
||||
font-size: 10rem;
|
||||
}
|
||||
|
||||
.header {
|
||||
font-size: 5rem;
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.link {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue