mirror of
https://github.com/fergalmoran/supanextail.git
synced 2026-01-06 16:45:07 +00:00
19 lines
533 B
TypeScript
19 lines
533 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} | Privacy Policy`}
|
|
description="SupaNexTail is a boilerplate for your website, based on Next.js, Supabase, and TailwindCSS"
|
|
/>
|
|
<Layout>
|
|
<PrivacyPolicy />
|
|
</Layout>
|
|
</>
|
|
);
|
|
export default PrivacyPage;
|