# Marketing Pages

> Build marketing pages for your SaaS application with blog, help docs, and legal content.

*Canonical: https://makerkit.dev/docs/tanstack-drizzle/marketing-pages/overview*

---

The kit provides all the building blocks required to ship a stunning looking SaaS website.

## Features

- ✅ Landing page with hero and features
- ✅ Blog system for content marketing
- ✅ Help/documentation integration
- ✅ Changelog for product updates
- ✅ FAQ page
- ✅ Legal pages (Terms, Privacy, etc.)

## Topics

1. **[Landing Page](./landing-page)** - Homepage and hero
2. **[Blog System](./blog-system)** - Blog posts and content
3. **[Documentation](./documentation)** - Integrate documentation
4. **[Changelog](./changelog)** - Product updates
5. **[FAQ](./faq)** - Frequently asked questions
6. **[Legal Pages](./legal-pages)** - Terms and privacy

## Marketing Site Structure

Marketing pages live under the pathless `_public` route group, which provides the shared site header and footer. The help center is a separate top-level route group:

```
apps/web/src/routes/
├── _public/
│   ├── route.tsx              # Public layout (header + footer)
│   ├── index.tsx             # Landing page
│   ├── faq.tsx               # FAQ page
│   ├── terms-of-service.tsx  # Legal pages (flat files)
│   ├── privacy-policy.tsx
│   ├── cookie-policy.tsx
│   ├── blog/
│   └── changelog/
└── help/                      # Help / documentation
```

---

**Next:** [Landing Page →](./landing-page)
