Pricing

The pricing page uses a custom layout pages/product.html and use 2 data sources data/pricing.json and data/faq.json to render the pricing table and FAQ.

Editing Plans & Pricing

You can add and edit plans in the pricing table by editing the data/pricing.json

// data/pricing.json
[
  {
    "name": "Personal",
    "description": "For individuals and open source projects.",
    "price": "Free",
    "buttonText": "Get Started",
    "buttonLink": "/signup",
    "highlighted": false,
    "featuresHeading": "Everything you need to offer live chat support.",
    "features": [
      "Live chat",
      "Email integration",
      "Messenger integration",
      "iOS & Android app",
      "3rd Party integrations"
    ]
  }
]

Enabling the FAQ

You can enable the FAQ section on the pricing page by setting the front-matter value show_faq: true

# content/pricing.md
---
title: Pricing
date: 2019-03-23
layout: pricing
show_faq: true
---

You can edit the FAQ questions in the data/faq.json - see the FAQ page documentation for more details.