Site content and style update for sprint2/3 (#279)

* add legend and styling for map page
* update header to latest style/content
* add contact page
* add methodology page
#199 and #200
This commit is contained in:
TomNUSDS 2021-07-01 07:28:43 -07:00 committed by GitHub
commit f4f7c35ca8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 202 additions and 74 deletions

View file

@ -0,0 +1,20 @@
import * as React from 'react';
import Layout from '../components/layout';
interface ContactPageProps {
location: Location;
}
const ContactPage = ({location}: ContactPageProps) => {
return (<Layout location={location}>
<section className={'usa-prose'}>
<h1>Contact</h1>
<p>
<i>Information pending</i>
</p>
</section>
</Layout>
);
};
export default ContactPage;