2016-04-23 16:18:41 +02:00
|
|
|
'use strict';
|
|
|
|
var React = require('react');
|
|
|
|
|
|
|
|
var About = React.createClass({
|
|
|
|
render: function () {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h2>About</h2>
|
2016-04-23 16:35:25 +02:00
|
|
|
<p>
|
|
|
|
This application allows you to find duplicates in your Spotify playlists.
|
2016-04-23 19:27:51 +02:00
|
|
|
For the moment, it does not offer to remove them for you.
|
2016-04-23 16:35:25 +02:00
|
|
|
</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>
|
2016-04-23 19:27:51 +02:00
|
|
|
<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>
|
2016-04-23 16:18:41 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = About;
|