2017-05-16 13:34:00 +02:00
|
|
|
|
|
|
|
|
|
import React from 'react'
|
|
|
|
|
import {Link} from 'react-router'
|
|
|
|
|
|
2018-06-26 16:59:01 +02:00
|
|
|
|
import content from 'helpers/content'
|
|
|
|
|
|
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 16:59:01 +02:00
|
|
|
|
<i className={content("header.icon", "fa fa-cloud")}></i>
|
2017-05-16 13:34:00 +02:00
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="title">
|
2018-06-26 16:59:01 +02:00
|
|
|
|
<h1>{content("header.title", "Alice")}</h1>
|
|
|
|
|
<p>{content("header.tagline",
|
|
|
|
|
"Your friendly bird looking glass")}</p>
|
2017-05-16 13:34:00 +02:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|