mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
21 lines
586 B
TypeScript
21 lines
586 B
TypeScript
// To modify the privacy policy, check the PrivacyPolicy.js component
|
|
|
|
import Layout from 'components/Layout';
|
|
import { NextSeo } from 'next-seo';
|
|
import PrivacyPolicy from 'components/PrivacyPolicy';
|
|
|
|
const PrivacyPage = (): JSX.Element => (
|
|
<>
|
|
<NextSeo
|
|
title={`${
|
|
process.env.NEXT_PUBLIC_TITLE ? process.env.NEXT_PUBLIC_TITLE : ''
|
|
} | Privacy Policy`}
|
|
description="SupaNexTail is a boilerplate for your website, based on Next.js, Supabase, and TailwindCSS"
|
|
/>
|
|
<Layout>
|
|
<PrivacyPolicy />
|
|
</Layout>
|
|
</>
|
|
);
|
|
export default PrivacyPage;
|