|
@@ -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 packageInfo from '../../../package.json';
|
|
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"
|
|
|
|
- description="Privacy policy of libremdb, a free & open source IMDb front-end."
|
|
|
|
|
|
+ title='Privacy'
|
|
|
|
+ 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}>
|
|
@@ -16,15 +16,15 @@ const Privacy = () => {
|
|
Privacy Policy
|
|
Privacy Policy
|
|
</h1>
|
|
</h1>
|
|
<div className={styles.list}>
|
|
<div className={styles.list}>
|
|
- <div className={styles.item}>
|
|
|
|
|
|
+ <section className={styles.item}>
|
|
<h2
|
|
<h2
|
|
className={`heading heading__secondary ${styles.item__heading}`}
|
|
className={`heading heading__secondary ${styles.item__heading}`}
|
|
>
|
|
>
|
|
Information collected
|
|
Information collected
|
|
</h2>
|
|
</h2>
|
|
<p className={styles.item__text}>No information is collected.</p>
|
|
<p className={styles.item__text}>No information is collected.</p>
|
|
- </div>
|
|
|
|
- <div className={styles.item}>
|
|
|
|
|
|
+ </section>
|
|
|
|
+ <section className={styles.item}>
|
|
<h2
|
|
<h2
|
|
className={`heading heading__secondary ${styles.item__heading}`}
|
|
className={`heading heading__secondary ${styles.item__heading}`}
|
|
>
|
|
>
|
|
@@ -40,12 +40,40 @@ const Privacy = () => {
|
|
prefrences, either turn off JavaScript or disable access to
|
|
prefrences, either turn off JavaScript or disable access to
|
|
Local Storage for libremdb.
|
|
Local Storage for libremdb.
|
|
</p>
|
|
</p>
|
|
- </div>
|
|
|
|
|
|
+ </section>
|
|
|
|
+ <section className={styles.item}>
|
|
|
|
+ <h2
|
|
|
|
+ className={`heading heading__secondary ${styles.item__heading}`}
|
|
|
|
+ >
|
|
|
|
+ Instance information
|
|
|
|
+ </h2>
|
|
|
|
+ {process.env.NEXT_PUBLIC_INSTANCE_NAME &&
|
|
|
|
+ process.env.NEXT_PUBLIC_INSTANCE_MAIN_URL && (
|
|
|
|
+ <p className={styles.item__text}>
|
|
|
|
+ Operated by:
|
|
|
|
+ <a
|
|
|
|
+ className='link'
|
|
|
|
+ href={process.env.NEXT_PUBLIC_INSTANCE_MAIN_URL}
|
|
|
|
+ >
|
|
|
|
+ {process.env.NEXT_PUBLIC_INSTANCE_NAME}
|
|
|
|
+ </a>
|
|
|
|
+ </p>
|
|
|
|
+ )}
|
|
|
|
+ <p className={styles.item__text}>
|
|
|
|
+ Version:
|
|
|
|
+ <a
|
|
|
|
+ className='link'
|
|
|
|
+ href={`https://github.com/zyachel/libremdb/tree/v${packageInfo.version}`}
|
|
|
|
+ >
|
|
|
|
+ {packageInfo.version}
|
|
|
|
+ </a>
|
|
|
|
+ </p>
|
|
|
|
+ </section>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<footer className={styles.metadata}>
|
|
<footer className={styles.metadata}>
|
|
<p>
|
|
<p>
|
|
- Last updated on <time>31 october, 2022.</time>
|
|
|
|
|
|
+ Privacy policy 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
|