Files
supanextail/pages/pricing.tsx
2021-12-16 23:45:43 +01:00

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;