---
title: About
slug: about
description: Learn more about this site and the team behind it.
canonical: https://clonepartner.com/blog/about/
---

# About


## Who We Are

This is an example static page. Static pages in Crater live in the `pages/` directory and use a simplified frontmatter schema compared to blog posts.

Unlike blog posts, static pages:

- Don't have dates, authors, or categories
- Don't appear in the RSS feed or blog listings
- Don't generate JSON-LD `BlogPosting` schema
- Support `default`, `wide`, and `full` layout widths

## How to Create a Page

Create a markdown file in the `pages/` directory:

```yaml
---
title: "Page Title"
slug: page-slug
description: "Optional meta description."
layout: default
draft: false
---
```

The slug becomes the URL path: `your-site.com/page-slug/`.

## Use Cases

Static pages are perfect for:

- **About pages** — team info, company story
- **Contact pages** — forms, addresses, support links
- **Legal pages** — privacy policy, terms of service
- **Landing pages** — product features, pricing
- **Documentation** — guides, API references

All the same markdown features available in blog posts (callouts, CTAs, code blocks, tables) work in static pages too.

> Check out the `pages/` directory and start building your site's static content.
>
> [Create Your First Page](#)
