Add Project-specific Privacy Policy Info to Config

This commit is contained in:
Mike Simpson 2023-02-08 12:04:33 +00:00
parent 47deb9b12a
commit d63da083e0
3 changed files with 3 additions and 1 deletions

View File

@ -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 organisations firewall in a secure database using industry standard practices.",
"initialMapPosition": [ 51.5245255, -0.1338422 ], "initialMapPosition": [ 51.5245255, -0.1338422 ],
"initialZoomLevel": 16 "initialZoomLevel": 16

View File

@ -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;

View File

@ -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 organisations 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>