style About page && links to resources

This commit is contained in:
2017-01-18 00:15:21 -08:00
parent 8595209afc
commit 6714a949dd
2 changed files with 15 additions and 2 deletions

View File

@@ -10,7 +10,20 @@ var React = require('react');
var About = (props) => {
return (
<h3>About Component</h3>
<div>
<h1 className="text-center">About</h1>
<p>
This is a weather app build on React. <a href="https://github.com/Raghu-Ch/ReactWeather">ReactWeather</a> app was built as a part of complete React web app developer cource.
</p>
<p>
Some of the tools i used for weather app:
</p>
<ul>
<li> <a href="https://facebook.github.io/react/">React</a> -A JavaScript framework by facebook.</li>
<li> <a href="https://openweathermap.org/">Open weather Map</a> -I used openweathermap API for serching weather based on city name</li>
<li> <a href="http://foundation.zurb.com/">Foundation</a> -I used foundation to get advanced responsive for front-end</li>
</ul>
</div>
);
};