Skip to content

Commit 9c8eb55

Browse files
authored
docs: remove free tier on pricing page (#990)
1 parent 70b25b4 commit 9c8eb55

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

docs/components/pages/pricing/faq.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const faqs = [
1616
{
1717
question:
1818
"What License is BlockNote using? Can I use it for commercial projects?",
19-
answer: `BlockNote is licensed under the MPL 2.0 license, which allows you to use BlockNote in commercial (and closed-source) applications.
19+
answer: `BlockNote is open source software licensed under the MPL 2.0 license, which allows you to use BlockNote in commercial (and closed-source) applications - even without a subscription.
2020
If you make changes to the BlockNote source files, you're expected to publish these changes so the wider community can benefit as well.`,
2121
},
2222
// More questions...

docs/components/pages/pricing/tiers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export function Tiers({
107107
frequency: Frequency;
108108
}) {
109109
return (
110-
<div className="isolate mx-auto mt-10 grid max-w-md grid-cols-1 gap-4 lg:mx-0 lg:max-w-none lg:grid-cols-4">
110+
<div className="isolate mx-auto mt-10 grid max-w-md grid-cols-1 gap-4 lg:mx-0 lg:max-w-none lg:grid-cols-3">
111111
{tiers.map((tier) => (
112112
<div
113113
key={tier.id}

docs/pages/pricing.mdx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ import { Tiers } from "../components/pages/pricing/tiers";
44

55
export default function Pricing() {
66
const tiers = [
7-
{
8-
id: "tier-free",
9-
title: "Community",
10-
description: "Everything necessary to get started for individuals and non-commercial projects.",
11-
price: "Free",
12-
features: [
13-
"Use BlockNote for free (open source license)",
14-
"Community Discord for help & feedback",
15-
],
16-
href: "/docs/",
17-
},
7+
// {
8+
// id: "tier-free",
9+
// title: "Community",
10+
// description: "Everything necessary to get started for individuals and non-commercial projects.",
11+
// price: "Free",
12+
// features: [
13+
// "Use BlockNote for free (open source license)",
14+
// "Community Discord for help & feedback",
15+
// ],
16+
// href: "/docs/",
17+
// },
1818
{
1919
id: "tier-starter",
20-
mostPopular: true,
20+
mostPopular: false,
2121
title: "Starter",
2222
description:
2323
"Best for companies and organizations building products with BlockNote.",
@@ -32,6 +32,7 @@ export default function Pricing() {
3232
{
3333
id: "tier-business",
3434
title: "Business",
35+
mostPopular: true,
3536
description:
3637
"Best for companies that want a direct line to the team.",
3738
price: { month: 189, year: 48 },

0 commit comments

Comments
 (0)