2017-05-16 13:34:00 +02:00
|
|
|
|
|
|
|
|
|
import React from 'react'
|
|
|
|
|
import {Link} from 'react-router'
|
|
|
|
|
|
2018-06-26 17:09:34 +02:00
|
|
|
|
import Content from 'components/content'
|
|
|
|
|
|
2018-06-26 16:59:01 +02:00
|
|
|
|
|
2017-05-16 13:34:00 +02:00
|
|
|
|
export default class SidebarHeader extends React.Component {
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="sidebar-header">
|
|
|
|
|
<div className="logo">
|
|
|
|
|
<Link to='/'>
|
2018-06-26 17:09:34 +02:00
|
|
|
|
<i className="fa fa-cloud"></i>
|
2017-05-16 13:34:00 +02:00
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="title">
|
2018-06-26 17:09:34 +02:00
|
|
|
|
<h1><Content id="header.title">Alice</Content></h1>
|
|
|
|
|
<p>
|
|
|
|
|
<Content id="header.tagline">
|
|
|
|
|
Your friendly bird looking glass.
|
|
|
|
|
</Content>
|
|
|
|
|
</p>
|
2017-05-16 13:34:00 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|