• Blog
  • Documentation
  • Courses
  • Changelog
  • AI Starters
  • UI Kit
  • FAQ
  • Supamode
    New
  • Pricing

Launch your next SaaS in record time with Makerkit, a React SaaS Boilerplate for Next.js and Supabase.

Makerkit is a product of Makerkit Pte Ltd (registered in the Republic of Singapore)Company Registration No: 202407149CFor support or inquiries, please contact us

About
  • FAQ
  • Contact
  • Verify your Discord
  • Consultation
  • Open Source
  • Become an Affiliate
Product
  • Documentation
  • Blog
  • Changelog
  • UI Blocks
  • Figma UI Kit
  • AI SaaS Starters
License
  • Activate License
  • Upgrade License
  • Invite Member
Legal
  • Terms of License
    • Starting developing your App
    • Migrations
    • Database Schema
    • Database Functions
    • Database Webhooks
    • Marketing Pages
    • Legal Pages
    • SEO
    • Adding a Turborepo package
    • Adding a Turborepo application

Legal Pages in the Remix Supabase Turbo Starter Kit

Learn how to create and update legal pages in the Remix Supabase Turbo Starter Kit.

Legal pages are defined in the apps/web/app/(marketing)/(legal) directory.

Makerkit comes with the following legal pages:

  1. Terms and Conditions
  2. Privacy Policy
  3. Cookie Policy

For obvious reasons, these pages are empty and you need to fill in the content.

Do yourself a favor and do not use ChatGPT to generate these pages.

Using a CMS for legal pages

You can use a CMS to manage the content of the legal pages. To do this, use the CMS Client:

tsx
import { createCmsClient } from '@kit/cms';
export async function MyPage() {
const cms = await createCmsClient();
const { title, content } = await cms.getContentBySlug({
slug: `slug`,
collection: `pages`
});
return (
<div>
<h1>{title}</h1>
<div dangerouslySetInnerHTML={{ __html: content }} />
</div>
);
}