Add Project-specific Privacy Policy Info to Config
This commit is contained in:
parent
47deb9b12a
commit
d63da083e0
@ -2,6 +2,7 @@
|
|||||||
"cityName": "London",
|
"cityName": "London",
|
||||||
"projectBlurb": "Colouring London is also the prototype for the Colouring Cities Research Programme (CCRP)",
|
"projectBlurb": "Colouring London is also the prototype for the Colouring Cities Research Programme (CCRP)",
|
||||||
"githubURL": "https://github.com/colouring-cities/colouring-london",
|
"githubURL": "https://github.com/colouring-cities/colouring-london",
|
||||||
|
"privacyStatement": "Colouring London stores your data at The Alan Turing Institute in London behind the organisation’s firewall in a secure database using industry standard practices.",
|
||||||
|
|
||||||
"initialMapPosition": [ 51.5245255, -0.1338422 ],
|
"initialMapPosition": [ 51.5245255, -0.1338422 ],
|
||||||
"initialZoomLevel": 16
|
"initialZoomLevel": 16
|
||||||
|
@ -3,6 +3,7 @@ export interface CCConfig
|
|||||||
cityName: string;
|
cityName: string;
|
||||||
projectBlurb: string;
|
projectBlurb: string;
|
||||||
githubURL: string;
|
githubURL: string;
|
||||||
|
privacyStatement: string;
|
||||||
|
|
||||||
initialMapPosition: [number, number];
|
initialMapPosition: [number, number];
|
||||||
initialZoomLevel: number;
|
initialZoomLevel: number;
|
||||||
|
@ -41,7 +41,7 @@ const PrivacyPolicyPage: React.SFC<any> = () => (
|
|||||||
|
|
||||||
<h2 className='h2'>How do we store your data?</h2>
|
<h2 className='h2'>How do we store your data?</h2>
|
||||||
<p>
|
<p>
|
||||||
Colouring {config.cityName} stores your data at The Alan Turing Institute in London behind the organisation’s firewall in a secure database using industry standard practices.
|
{config.privacyStatement}
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h2 className='h2'>How do we use cookies?</h2>
|
<h2 className='h2'>How do we use cookies?</h2>
|
||||||
|
Loading…
Reference in New Issue
Block a user