1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2018-06-26 16:59:01 +02:00

26 lines
617 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
import {Link} from 'react-router'
import content from 'helpers/content'
export default class SidebarHeader extends React.Component {
render() {
return (
<div className="sidebar-header">
<div className="logo">
<Link to='/'>
<i className={content("header.icon", "fa fa-cloud")}></i>
</Link>
</div>
<div className="title">
<h1>{content("header.title", "Alice")}</h1>
<p>{content("header.tagline",
"Your friendly bird looking glass")}</p>
</div>
</div>
);
}
}