mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
19 lines
494 B
JavaScript
19 lines
494 B
JavaScript
// To modify the terms & conditions, check the Terms.js component
|
|
|
|
import Layout from 'components/Layout';
|
|
import { NextSeo } from 'next-seo';
|
|
import Terms from 'components/Terms';
|
|
|
|
const TermsPage = () => (
|
|
<>
|
|
<NextSeo
|
|
title={`${process.env.NEXT_PUBLIC_TITLE} | Terms and conditions`}
|
|
description="SupaNexTail is a boilerplate for your website, based on Next.js, Supabase, and TailwindCSS"
|
|
/>
|
|
<Layout>
|
|
<Terms />
|
|
</Layout>
|
|
</>
|
|
);
|
|
export default TermsPage;
|