mirror of
https://github.com/maputnik/editor.git
synced 2026-08-25 22:47:39 +00:00
About page with basic infos and links to github repo
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
import React from 'react'
|
||||
import theme from './theme.js'
|
||||
|
||||
import Heading from 'rebass/dist/Heading'
|
||||
import Container from 'rebass/dist/Container'
|
||||
import Input from 'rebass/dist/Input'
|
||||
import Toolbar from 'rebass/dist/Toolbar'
|
||||
import NavItem from 'rebass/dist/NavItem'
|
||||
import Space from 'rebass/dist/Space'
|
||||
|
||||
import Immutable from 'immutable'
|
||||
import PureRenderMixin from 'react-addons-pure-render-mixin';
|
||||
|
||||
/** About page with basic infos and links to github repo */
|
||||
export class About extends React.Component {
|
||||
static propTypes = {}
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.shouldComponentUpdate = PureRenderMixin.shouldComponentUpdate.bind(this);
|
||||
}
|
||||
|
||||
render() {
|
||||
return <div>
|
||||
<Toolbar style={{marginRight: 20}}>
|
||||
<NavItem>
|
||||
<Heading>About</Heading>
|
||||
</NavItem>
|
||||
</Toolbar>
|
||||
<Container>
|
||||
<h3>Mapital – Visual Map Editor for Mapbox GL</h3>
|
||||
<p>
|
||||
A free and open visual editor for the Mapbox GL styles targeted at developers and map designers. Creating your own custom map is easy with Mapital.
|
||||
</p>
|
||||
<p>
|
||||
The source code is openly licensed and available on <a href="https://github.com/mapital/editor">github</a>.
|
||||
</p>
|
||||
</Container>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user