mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
36 lines
1.1 KiB
JavaScript
36 lines
1.1 KiB
JavaScript
import React from "react"
|
|
|
|
class Footer extends React.Component {
|
|
render () {
|
|
return (
|
|
<footer className="grey-text no-print">
|
|
<div className="container center">
|
|
<div className="row">
|
|
<div className="col s12">
|
|
<div>
|
|
<a href="https://www.twitter.com/indentlabs" target="_blank">
|
|
<i className="fa fa-twitter blue-text"></i> Twitter
|
|
</a>
|
|
·
|
|
<a href="https://www.facebook.com/Notebookai-556092274722663/" target="_blank">
|
|
<i className="fa fa-facebook blue-text"></i> Facebook
|
|
</a>
|
|
·
|
|
<a href="https://github.com/indentlabs/notebook" target="_blank">
|
|
<i className="fa fa-github black-text"></i> GitHub
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
Notebook.ai © 2016-2021 <a href='http://www.indentlabs.com' className='grey-text'>
|
|
Indent Labs, LLC
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Footer;
|