DAVIDS/src/public/components/about.js

38 lines
1.5 KiB
JavaScript

'use strict';
var React = require('react');
var About = React.createClass({
render: function () {
return (
<div>
<h2>About</h2>
<p>
This application allows you to find duplicates in your Spotify playlists.
For the moment, it does not offer to remove them for you.
</p>
<p>
The app requests access to :
</p>
<ul>
<li><strong>Your public information.</strong> We don't need this but it's here by default and we
can't remove it. We don't have access to your email address and we don't store any information
about you. We won't spam you.
</li>
<li><strong>Your private and collaborative playlists (read only).</strong> We need this to provide
the service on all of your playlists. Don't worry, we can't modify them and we don't store any
information about it.
</li>
</ul>
<h2>Contribute</h2>
<p>
If you want to contribute to this project, feel free to
<a href="https://github.com/Crocmagnon/DAVIDS/issues">open an issue</a> or
<a href="https://github.com/Crocmagnon/DAVIDS/pulls">propose a pull-request</a>.
</p>
</div>
);
}
});
module.exports = About;