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

22 lines
577 B

import Page from "@components/Page";
import Layout from "@components/Layout";
const Thanks = () => (
<Page title="Thanks!" description="Thanks for submitting your contact form!">
<Layout>
3 years ago
<div className="page">
<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>
</Layout>
</Page>
);
export default Thanks;