Navigation: [/sitemap.md](/sitemap.md)

---
type: block
category: "pricing"
title: "Pricing 1"
description: "Choose the plan that fits your workflow. Upgrade or downgrade at any time."
---

```astro live props={{ name: 'pricing-1' }}
---
import Pricing1Block from "@/components/blocks/pricing-1.astro"
---

<Pricing1Block
  title="Simple, transparent pricing"
  description="Choose the plan that fits your workflow. Upgrade or downgrade at any time."
  plans={[
    {
      name: "Starter",
      description: "For individuals and small projects getting started.",
      price: 19,
      currency: "USD",
      unit: "month",
      features: [
        "Up to 3 projects",
        "Basic analytics",
        "Community support",
        "1 GB storage",
      ],
      button: { label: "Get started", href: "/docs/", variant: "outline" },
    },
    {
      name: "Team",
      description: "For growing teams that need more power and collaboration.",
      price: 49,
      currency: "USD",
      unit: "month",
      featured: true,
      features: [
        "Unlimited projects",
        "Advanced analytics",
        "Priority support",
        "10 GB storage",
        "Team collaboration",
      ],
      button: { label: "Get started", href: "/docs/" },
    },
    {
      name: "Studio",
      description: "For agencies and large teams with advanced needs.",
      price: 99,
      currency: "USD",
      unit: "month",
      features: [
        "Everything in Team",
        "Custom integrations",
        "Dedicated support",
        "Unlimited storage",
        "SSO and audit logs",
      ],
      button: { label: "Contact sales", href: "/docs/", variant: "outline" },
    },
  ]}
/>
```
