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.
Portfolio/pages/thanks.tsx

23 lines
610 B

import Page from "../components/Page";
import Navbar from "../components/Navbar";
3 years ago
import Footer from "../components/Footer";
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>
3 years ago
<Footer />
</Page>
);
export default Thanks;