fix: remove "information collected by other services" in privacy

This commit is contained in:
httpjamesm 2022-10-31 18:23:05 -04:00
parent eac51d2465
commit 6ae71d7907

View File

@ -1,14 +1,14 @@
import Meta from '../../components/Meta/Meta'; import Meta from '../../components/Meta/Meta'
import Layout from '../../layouts/Layout'; import Layout from '../../layouts/Layout'
import styles from '../../styles/modules/pages/privacy/privacy.module.scss'; import styles from '../../styles/modules/pages/privacy/privacy.module.scss'
const Privacy = () => { const Privacy = () => {
return ( return (
<> <>
<Meta <Meta
title='Privacy' title="Privacy"
description='Privacy policy of libremdb, a free & open source IMDb front-end.' description="Privacy policy of libremdb, a free & open source IMDb front-end."
/> />
<Layout className={styles.privacy}> <Layout className={styles.privacy}>
<section className={styles.policy}> <section className={styles.policy}>
@ -41,24 +41,11 @@ const Privacy = () => {
Local Storage for libremdb. Local Storage for libremdb.
</p> </p>
</div> </div>
<div className={styles.item}>
<h2
className={`heading heading__secondary ${styles.item__heading}`}
>
Information collected by other services
</h2>
<p className={styles.item__text}>
libremdb connects to 'media-amazon.com' and 'media-imdb.com' for
fetching images and videos. So, Amazon might log your IP
address, and other information(such as http headers) sent by
your browser.
</p>
</div>
</div> </div>
<footer className={styles.metadata}> <footer className={styles.metadata}>
<p> <p>
Last updated on <time>10 september, 2022.</time> Last updated on <time>31 october, 2022.</time>
</p> </p>
<p> <p>
You can see the full revision history of this privacy policy on You can see the full revision history of this privacy policy on
@ -68,7 +55,7 @@ const Privacy = () => {
</section> </section>
</Layout> </Layout>
</> </>
); )
}; }
export default Privacy; export default Privacy