Files
forum-frontend/src/app/privacy/page.tsx
T
2024-01-27 15:40:32 +01:00

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>&quot;we&quot;</strong>{' '}
or <strong>&quot;us&quot;</strong>) is committed to
protecting the information of their users.
</p>
<h2>Information We Collect</h2>
<ol>
<li></li>
</ol>
</article>
</main>
);
}