Added a thank-you-page when user submits form
parent
7848de25e7
commit
49b519b015
@ -1,27 +1,30 @@
|
|||||||
const Footer = () => (
|
const Footer = () => {
|
||||||
<footer className="footer">
|
const year = new Date().getFullYear();
|
||||||
<div className="container">
|
return (
|
||||||
<img src="/profile.png" width="100%" height="100%" alt="" className="profile" />
|
<footer className="footer">
|
||||||
<div className="branding">
|
<div className="container">
|
||||||
Guus van Meerveld <br />
|
<img src="/profile.png" width="100%" height="100%" alt="" className="profile" />
|
||||||
© 2021
|
<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>
|
||||||
<div className="socials">
|
</footer>
|
||||||
<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>
|
|
||||||
);
|
|
||||||
|
|
||||||
export default 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