c92c4cded3
The TypeScript build currently runs but fails for a number of files. This commit only contains rename operations on the source files.
29 lines
1.1 KiB
TypeScript
29 lines
1.1 KiB
TypeScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import './welcome.css';
|
|
|
|
const Welcome = () => (
|
|
<div className="jumbotron welcome-float">
|
|
<h1 className="h1">Welcome to Colouring London</h1>
|
|
|
|
<p className="lead">
|
|
Colouring London is a citizen science platform collecting information on every
|
|
building in London, to help make the city more sustainable. We’re building it at The
|
|
Bartlett Centre for Advanced Spatial Analysis, University College London.
|
|
</p>
|
|
<p className="lead">
|
|
Can you help us? We’re still at an early stage of development, and we’re looking for
|
|
volunteers of all ages and abilities to test and provide feedback on the site as we
|
|
build it.
|
|
</p>
|
|
<Link to="/view/age.html"
|
|
className="btn btn-outline-dark btn-lg btn-block">
|
|
Start Colouring Here!
|
|
</Link>
|
|
<img src="images/supporter-logos.png" alt="Colouring London collaborating organisations: The Bartlett UCL, Ordnance Survey, Historic England, Greater London Authority" />
|
|
</div>
|
|
);
|
|
|
|
export default Welcome;
|