Files
claudemesh/.context/turbostarter-framework-context/sections/web/marketing/pages.md
Alejandro Gutiérrez d3163a5bff feat(db): mesh data model — meshes, members, invites, audit log
- pgSchema "mesh" with 4 tables isolating the peer mesh domain
- Enums: visibility, transport, tier, role
- audit_log is metadata-only (E2E encryption enforced at broker/client)
- Cascade on mesh delete, soft-delete via archivedAt/revokedAt

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-04 21:19:32 +01:00

2.1 KiB

title, description, url
title description url
Marketing pages Discover which marketing pages are available out of the box and how to add a new one. /docs/web/marketing/pages

Marketing pages

TurboStarter comes with pre-defined marketing pages to help you get started with your SaaS application. These pages are built with Next.js and Tailwind CSS and are located in the apps/web/src/app/[locale]/(marketing) directory.

TurboStarter comes with the following marketing pages:

Contact form

To make the contact form work, you need to add the following environment variable:

CONTACT_EMAIL=

Set this variable to the email address where you want to receive contact form submissions. The sender's email address will match what you configured in your mailing configuration.

Adding a new marketing page

To add a new marketing page, create a new directory in apps/web/src/app/[locale]/(marketing) with the desired route name.

The page will automatically become available in your application at the corresponding URL path.

For example, to create a page accessible at /about, create a directory named about and add a page.tsx file inside it. The complete path would be apps/web/src/app/[locale]/(marketing)/about/page.tsx.

export default function AboutPage() {
  return <div>About</div>;
}

This page inherits the layout at apps/web/src/app/[locale]/(marketing)/layout.tsx. You can customize the layout by editing this file - but remember that it will affect all marketing pages.