Add Project-specific Privacy Policy Info to Config
This commit is contained in:
parent
47deb9b12a
commit
d63da083e0
@ -2,6 +2,7 @@
|
||||
"cityName": "London",
|
||||
"projectBlurb": "Colouring London is also the prototype for the Colouring Cities Research Programme (CCRP)",
|
||||
"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 ],
|
||||
"initialZoomLevel": 16
|
||||
|
@ -3,6 +3,7 @@ export interface CCConfig
|
||||
cityName: string;
|
||||
projectBlurb: string;
|
||||
githubURL: string;
|
||||
privacyStatement: string;
|
||||
|
||||
initialMapPosition: [number, number];
|
||||
initialZoomLevel: number;
|
||||
|
@ -41,7 +41,7 @@ const PrivacyPolicyPage: React.SFC<any> = () => (
|
||||
|
||||
<h2 className='h2'>How do we store your data?</h2>
|
||||
<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>
|
||||
|
||||
<h2 className='h2'>How do we use cookies?</h2>
|
||||
|
Loading…
Reference in New Issue
Block a user