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

30 lines
642 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 'components/content'
export default class SidebarHeader extends React.Component {
render() {
return (
<div className="sidebar-header">
<div className="logo">
<Link to='/'>
<i className="fa fa-cloud"></i>
</Link>
</div>
<div className="title">
<h1><Content id="header.title">Alice</Content></h1>
<p>
<Content id="header.tagline">
Your friendly bird looking glass.
</Content>
</p>
</div>
</div>
);
}
}