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,19 @@
import React from 'react';
const MapLegend = () => {
return (
<>
<dl className={'j40-maplegend'}>
<h4>Color Key</h4>
<dt className={'mapsquare-a'}>&nbsp;</dt>
<dd>Prioritized community</dd>
<dt className={'mapsquare-b'}>&nbsp;</dt>
<dd>Threshold community</dd>
<dt className={'mapsquare-c'}>$nbsp;</dt>
<dd>Non-Prioritized community</dd>
</dl>
</>
);
};
export default MapLegend;