Since you've nested About under Home you need to render a component within your Home component in order for React Router to be able to display your route components.
import {RouteHandler} from 'react-router';
var Home = React.createClass({
render() {
return ( this is the main component
);
}
});