Seperate page for contact
parent
2d331bc91e
commit
de44aa2927
@ -0,0 +1,19 @@
|
|||||||
|
import { NextPage } from 'next';
|
||||||
|
|
||||||
|
import Page from '@components/Page';
|
||||||
|
import Layout from '@components/Layout';
|
||||||
|
import ContactForm from '@components/Contact';
|
||||||
|
|
||||||
|
const Contact: NextPage = () => {
|
||||||
|
return (
|
||||||
|
<Page description="Contact me" title="Contact">
|
||||||
|
<Layout>
|
||||||
|
<div className="contact-page">
|
||||||
|
<ContactForm />
|
||||||
|
</div>
|
||||||
|
</Layout>
|
||||||
|
</Page>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Contact;
|
Loading…
Reference in new issue