28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
|
import React from 'react';
|
|||
|
|
|||
|
|
|||
|
const ContactPage = () => (
|
|||
|
<article>
|
|||
|
<section className="main-col">
|
|||
|
<h1 className="h2">
|
|||
|
Contact
|
|||
|
</h1>
|
|||
|
<p> Colouring London has been designed as a sustainable, low-cost model for knowledge exchange/open data platforms able to be reproduced by other towns and cities using our open platform code.</p>
|
|||
|
|
|||
|
<p> It is being developed by a small, dedicated team at UCL. We are unable to answer individual queries but welcome constructive comments on how to improve the site, and on other types of data and new features you might like to see.</p>
|
|||
|
|
|||
|
<p> You can send us comments or ask questions on our discussion threads at <a href="https://discuss.colouring.london/">https://discuss.colouring.london/</a>.</p>
|
|||
|
|
|||
|
<p> To view our technical site and platform code please visit Github at: <a href="https://github.com/tomalrussell/colouring-london">https://github.com/tomalrussell/colouring-london</a>.</p>
|
|||
|
|
|||
|
<p>For press enquiries please contact the Bartlett Press and Communications team at architecture@ucl.ac.uk.</p>
|
|||
|
|
|||
|
<p>
|
|||
|
<img className="d-block mx-auto" src="images/logo-cl.png"></img>
|
|||
|
</p>
|
|||
|
</section>
|
|||
|
</article>
|
|||
|
);
|
|||
|
|
|||
|
export default ContactPage;
|