feat: update information in FAQ
This commit is contained in:
parent
720f2b6acb
commit
44d3a33fb3
@ -1,19 +1,19 @@
|
|||||||
/* eslint-disable react/no-unescaped-entities */
|
/* eslint-disable react/no-unescaped-entities */
|
||||||
import Link from 'next/link';
|
import Link from 'next/link'
|
||||||
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/about/about.module.scss';
|
import styles from '../../styles/modules/pages/about/about.module.scss'
|
||||||
|
|
||||||
const About = () => {
|
const About = () => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Meta
|
<Meta
|
||||||
title='About'
|
title="About"
|
||||||
description='libremdb is a free & open source IMDb front-end. It allows you to see information about movies, tv shows, video games without any ads or tracking.'
|
description="libremdb is a free & open source IMDb front-end. It allows you to see information about movies, tv shows, video games without any ads or tracking."
|
||||||
/>
|
/>
|
||||||
<Layout full className={styles.about}>
|
<Layout full className={styles.about}>
|
||||||
<section id='features' className={styles.features}>
|
<section id="features" className={styles.features}>
|
||||||
<h2
|
<h2
|
||||||
className={`heading heading__secondary ${styles.features__heading}`}
|
className={`heading heading__secondary ${styles.features__heading}`}
|
||||||
>
|
>
|
||||||
@ -22,12 +22,12 @@ const About = () => {
|
|||||||
<ul className={styles.features__list}>
|
<ul className={styles.features__list}>
|
||||||
<li className={styles.feature}>
|
<li className={styles.feature}>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden='true'
|
aria-hidden="true"
|
||||||
focusable='false'
|
focusable="false"
|
||||||
role='img'
|
role="img"
|
||||||
className={styles.feature__icon}
|
className={styles.feature__icon}
|
||||||
>
|
>
|
||||||
<use href='/svg/sprite.svg#icon-eye-slash'></use>
|
<use href="/svg/sprite.svg#icon-eye-slash"></use>
|
||||||
</svg>
|
</svg>
|
||||||
<h3
|
<h3
|
||||||
className={`heading heading__tertiary ${styles.feature__heading}`}
|
className={`heading heading__tertiary ${styles.feature__heading}`}
|
||||||
@ -41,12 +41,12 @@ const About = () => {
|
|||||||
</li>
|
</li>
|
||||||
<li className={styles.feature}>
|
<li className={styles.feature}>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden='true'
|
aria-hidden="true"
|
||||||
focusable='false'
|
focusable="false"
|
||||||
role='img'
|
role="img"
|
||||||
className={styles.feature__icon}
|
className={styles.feature__icon}
|
||||||
>
|
>
|
||||||
<use href='/svg/sprite.svg#icon-palette'></use>
|
<use href="/svg/sprite.svg#icon-palette"></use>
|
||||||
</svg>
|
</svg>
|
||||||
<h3
|
<h3
|
||||||
className={`heading heading__tertiary ${styles.feature__heading}`}
|
className={`heading heading__tertiary ${styles.feature__heading}`}
|
||||||
@ -60,12 +60,12 @@ const About = () => {
|
|||||||
</li>
|
</li>
|
||||||
<li className={styles.feature}>
|
<li className={styles.feature}>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden='true'
|
aria-hidden="true"
|
||||||
focusable='false'
|
focusable="false"
|
||||||
role='img'
|
role="img"
|
||||||
className={styles.feature__icon}
|
className={styles.feature__icon}
|
||||||
>
|
>
|
||||||
<use href='/svg/sprite.svg#icon-responsive'></use>
|
<use href="/svg/sprite.svg#icon-responsive"></use>
|
||||||
</svg>
|
</svg>
|
||||||
<h3
|
<h3
|
||||||
className={`heading heading__tertiary ${styles.feature__heading}`}
|
className={`heading heading__tertiary ${styles.feature__heading}`}
|
||||||
@ -79,7 +79,7 @@ const About = () => {
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<section id='faq' className={styles.faqs}>
|
<section id="faq" className={styles.faqs}>
|
||||||
<h2 className={`heading heading__secondary ${styles.faqs__heading}`}>
|
<h2 className={`heading heading__secondary ${styles.faqs__heading}`}>
|
||||||
Questions you may have
|
Questions you may have
|
||||||
</h2>
|
</h2>
|
||||||
@ -91,21 +91,21 @@ const About = () => {
|
|||||||
<p className={styles.faq__description}>
|
<p className={styles.faq__description}>
|
||||||
Replace `imdb.com` in any IMDb URL with any of the instances.
|
Replace `imdb.com` in any IMDb URL with any of the instances.
|
||||||
For example: `
|
For example: `
|
||||||
<a href='https://imdb.com/title/tt1049413' className='link'>
|
<a href="https://imdb.com/title/tt1049413" className="link">
|
||||||
imdb.com/title/tt1049413
|
imdb.com/title/tt1049413
|
||||||
</a>
|
</a>
|
||||||
` to `
|
` to `
|
||||||
<a
|
<a
|
||||||
href='https://libremdb.iket.me/title/tt1049413'
|
href="https://libremdb.iket.me/title/tt1049413"
|
||||||
className='link'
|
className="link"
|
||||||
>
|
>
|
||||||
libremdb.iket.me/title/tt1049413
|
libremdb.iket.me/title/tt1049413
|
||||||
</a>
|
</a>
|
||||||
` . To avoid changing the URLs manually, you can use extensions
|
` . To avoid changing the URLs manually, you can use extensions
|
||||||
like{' '}
|
like{' '}
|
||||||
<a
|
<a
|
||||||
href='https://github.com/libredirect/libredirect/'
|
href="https://github.com/libredirect/libredirect/"
|
||||||
className='link'
|
className="link"
|
||||||
>
|
>
|
||||||
LibRedirect
|
LibRedirect
|
||||||
</a>
|
</a>
|
||||||
@ -133,12 +133,21 @@ const About = () => {
|
|||||||
</details>
|
</details>
|
||||||
<details className={styles.faq}>
|
<details className={styles.faq}>
|
||||||
<summary className={styles.faq__summary}>
|
<summary className={styles.faq__summary}>
|
||||||
I see connection being made to some Amazon domains.
|
Is content served from third-parties, like Amazon?
|
||||||
</summary>
|
</summary>
|
||||||
<p className={styles.faq__description}>
|
<p className={styles.faq__description}>
|
||||||
For now, images and videos are directly served from Amazon. If I
|
Nope, libremdb proxies all image and video requests through the
|
||||||
have enough time in the future, I'll implement a way to serve
|
instance to avoid exposing your IP address, browser information
|
||||||
the images from libremdb instead.
|
and other personally identifiable metadata (
|
||||||
|
<a
|
||||||
|
href="https://github.com/httpjamesm"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="link"
|
||||||
|
>
|
||||||
|
Contributor
|
||||||
|
</a>
|
||||||
|
).
|
||||||
</p>
|
</p>
|
||||||
</details>
|
</details>
|
||||||
<details className={styles.faq}>
|
<details className={styles.faq}>
|
||||||
@ -146,9 +155,9 @@ const About = () => {
|
|||||||
Will Amazon track me then?
|
Will Amazon track me then?
|
||||||
</summary>
|
</summary>
|
||||||
<p className={styles.faq__description}>
|
<p className={styles.faq__description}>
|
||||||
They may log your IP address, useragent, and other such
|
Also nope. All Amazon will see is the libremdb instance making
|
||||||
identifiers. I'd recommend using a VPN, or accessing the website
|
the request, not you. IP address, browser information and other
|
||||||
through TOR for mitigating this risk.
|
personally identifiable metadata is hidden from Amazon.
|
||||||
</p>
|
</p>
|
||||||
</details>
|
</details>
|
||||||
<details className={styles.faq}>
|
<details className={styles.faq}>
|
||||||
@ -157,7 +166,7 @@ const About = () => {
|
|||||||
</summary>
|
</summary>
|
||||||
<p className={styles.faq__description}>
|
<p className={styles.faq__description}>
|
||||||
Refer to the{' '}
|
Refer to the{' '}
|
||||||
<a className='link' href='#features'>
|
<a className="link" href="#features">
|
||||||
features section
|
features section
|
||||||
</a>{' '}
|
</a>{' '}
|
||||||
above.
|
above.
|
||||||
@ -187,8 +196,8 @@ const About = () => {
|
|||||||
</summary>
|
</summary>
|
||||||
<p className={styles.faq__description}>
|
<p className={styles.faq__description}>
|
||||||
That's great! I've a couple of{' '}
|
That's great! I've a couple of{' '}
|
||||||
<Link href='/contact'>
|
<Link href="/contact">
|
||||||
<a className='link'>contact methods</a>
|
<a className="link">contact methods</a>
|
||||||
</Link>
|
</Link>
|
||||||
. Send your beautiful suggestions(or complaints), or just drop a
|
. Send your beautiful suggestions(or complaints), or just drop a
|
||||||
hi.
|
hi.
|
||||||
@ -198,7 +207,7 @@ const About = () => {
|
|||||||
</section>
|
</section>
|
||||||
</Layout>
|
</Layout>
|
||||||
</>
|
</>
|
||||||
);
|
)
|
||||||
};
|
}
|
||||||
|
|
||||||
export default About;
|
export default About
|
||||||
|
Loading…
x
Reference in New Issue
Block a user