diff --git a/src/pages/contact.tsx b/src/pages/contact.tsx new file mode 100644 index 0000000..3981576 --- /dev/null +++ b/src/pages/contact.tsx @@ -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 ( + + +
+ +
+
+
+ ); +}; + +export default Contact; diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 4db562c..4f501c3 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,6 +1,5 @@ import { NextPage } from 'next'; -import Contact from '@components/Contact'; import Layout from '@components/Layout'; import Page from '@components/Page'; @@ -39,8 +38,6 @@ const Home: NextPage = () => ( ))} - - ); diff --git a/src/styles/sass/contact.scss b/src/styles/sass/contact.scss index 4707edf..dfd6594 100644 --- a/src/styles/sass/contact.scss +++ b/src/styles/sass/contact.scss @@ -3,7 +3,7 @@ font-size: 4rem; text-align: center; margin-bottom: 3rem; - border-top: 0.1rem solid var(--borders); + // border-top: 0.1rem solid var(--borders); padding-top: 4rem; } @@ -26,3 +26,9 @@ height: 10rem; } } + +.contact-page { + height: 100vh; + + padding-top: 10rem; +}