33 lines
980 B
TypeScript
33 lines
980 B
TypeScript
import { Metadata } from 'next';
|
|
import { openGraphMetadata } from '@/app/_helpers/shared_metadata';
|
|
import Link from 'next/link';
|
|
import styles from './page.module.scss';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Privacy Policy',
|
|
openGraph: {
|
|
...openGraphMetadata,
|
|
title: 'Privacy Policy',
|
|
},
|
|
};
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main className={styles.main}>
|
|
<article className={styles.content}>
|
|
<h1>Privacy Policy</h1>
|
|
<p>Last updated: [insert date]</p>
|
|
<p>
|
|
<strong>Forum</strong> (<strong>"we"</strong>{' '}
|
|
or <strong>"us"</strong>) is committed to
|
|
protecting the information of their users.
|
|
</p>
|
|
<h2>Information We Collect</h2>
|
|
<ol>
|
|
<li></li>
|
|
</ol>
|
|
</article>
|
|
</main>
|
|
);
|
|
}
|