You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import Page from "../components/Page";
|
|
|
|
|
import Navbar from "../components/Navbar";
|
|
|
|
|
|
|
|
|
|
const Thanks = () => (
|
|
|
|
|
<Page title="Thanks!" description="Thanks for submitting your contact form!">
|
|
|
|
|
<Navbar />
|
|
|
|
|
<div className="message">
|
|
|
|
|
<div>
|
|
|
|
|
<div className="icon">❤️</div>
|
|
|
|
|
<div className="header">Thank you!</div>
|
|
|
|
|
<div className="subtitle">Your submission is greatly appreciated!</div>
|
|
|
|
|
<a href="/" className="link button">
|
|
|
|
|
Go back
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</Page>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
export default Thanks;
|