Update, built Contact Page

This commit is contained in:
2018-03-10 21:26:44 +11:00
parent ceb48e104c
commit c24c29c899
33 changed files with 1041 additions and 134 deletions

View File

@ -0,0 +1,43 @@
/*
* Contact Page
* Not the Homepage.
*
* Dependencies:
* styles/components/_page--style-contact.scss
*
* Version:
* 1.0.0 - 2018/03/03
*/
import React from 'react';
import Page from './../Page';
import PhoneSection from './../sections/PhoneSection';
import BodySection from './../sections/BodySection';
import ContactForm from './../forms/ContactForm';
class ContactPage extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<Page>
<PhoneSection />
<BodySection>
<h1>Contact</h1>
<div className="c-page--style-container__split">
<p className="c-page--style-container__split-part">
Want to get ahold of me and other lorem ipsum dolor?
</p>
<ContactForm className="c-page--style-container__split-part" />
</div>
</BodySection>
</Page>
)
}
}
export default ContactPage;