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