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

---
type: block
category: "pricing"
title: "Pricing 2"
description: "Start small and scale as you grow. All plans include a 14-day free trial."
---

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

<Pricing2Block
  title="Pick the plan that matches your needs"
  description="Start small and scale as you grow. All plans include a 14-day free trial."
  plans={[
    {
      name: "Basic",
      description: "Essential tools for personal use and small projects.",
      price: 29,
      currency: "USD",
      unit: "month",
      features: [
        "5 projects",
        "Basic analytics",
        "Email support",
        "2 GB storage",
      ],
      button: { label: "Start free trial", href: "/docs/", variant: "outline" },
    },
    {
      name: "Pro",
      description: "Advanced features for professionals and growing teams.",
      price: 79,
      compareAt: 99,
      currency: "USD",
      unit: "month",
      features: [
        "Unlimited projects",
        "Advanced analytics",
        "Priority support",
        "50 GB storage",
        "Custom domains",
        "API access",
      ],
      button: { label: "Start free trial", href: "/docs/" },
    },
  ]}
/>
```
