Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes to get compliance with Google Drive policies. #296

Merged
merged 7 commits into from
May 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/components/Landing/__snapshots__/Landing.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ exports[`<Landing /> renders 1`] = `
<br />
Google Drive and WebDAV.
</h2>
<p
class="landing-description"
>
organice allows you to view and edit Org files from cloud storage directly on your device! No Org file or other user-data will be stored on our servers; the entire app is browser-based.
</p>
<a
href="/sample"
>
Expand Down
6 changes: 6 additions & 0 deletions src/components/Landing/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ export default () => {
<br /> Google Drive and WebDAV.
</h2>

<p className="landing-description">
organice allows you to view and edit Org files from cloud storage directly on your device!
No Org file or other user-data will be stored on our servers; the entire app is
browser-based.
</p>

<Link to="/sample">
<div className="btn landing-button view-sample-button">View sample</div>
</Link>
Expand Down
5 changes: 5 additions & 0 deletions src/components/Landing/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ footer a {
text-align: center;
}

.landing-description {
margin-left: 20px;
margin-right: 20px;
}

.landing-logo {
height: 7em;
}
Expand Down
14 changes: 12 additions & 2 deletions src/components/PrivacyPolicy/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import './stylesheet.css';
const PrivacyPolicy = () => {
return (
<div className="privacy-policy-container">
<h1>Privacy Policy</h1>
<p>Last updated: September 6nd, 2019</p>
<h1>organice privacy policy</h1>
<p>Last updated: May 9th, 2020</p>

<p>
<a href="https://200ok.ch/">200ok llc</a> operates the https://organice.200ok.ch website and
Expand Down Expand Up @@ -47,6 +47,16 @@ const PrivacyPolicy = () => {
you visit, the time and date of your visit, the time spent on those pages, and other
statistics.
</p>
<p>
<strong>User data</strong>
</p>
<p>
No user data, including user data from third-party services such as Dropbox or Google, will
be stored or monitored by our Service. All access to user data is done through the proper
APIs of the respective services, and all data is only processed by the browser. No data will
be shared with any other service.
</p>

<p>
<strong>Cookies</strong>
</p>
Expand Down