Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove free tier on pricing page #990

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/components/pages/pricing/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const faqs = [
{
question:
"What License is BlockNote using? Can I use it for commercial projects?",
answer: `BlockNote is licensed under the MPL 2.0 license, which allows you to use BlockNote in commercial (and closed-source) applications.
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.
If you make changes to the BlockNote source files, you're expected to publish these changes so the wider community can benefit as well.`,
},
// More questions...
Expand Down
2 changes: 1 addition & 1 deletion docs/components/pages/pricing/tiers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export function Tiers({
frequency: Frequency;
}) {
return (
<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">
<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">
{tiers.map((tier) => (
<div
key={tier.id}
Expand Down
25 changes: 13 additions & 12 deletions docs/pages/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ import { Tiers } from "../components/pages/pricing/tiers";

export default function Pricing() {
const tiers = [
{
id: "tier-free",
title: "Community",
description: "Everything necessary to get started for individuals and non-commercial projects.",
price: "Free",
features: [
"Use BlockNote for free (open source license)",
"Community Discord for help & feedback",
],
href: "/docs/",
},
// {
// id: "tier-free",
// title: "Community",
// description: "Everything necessary to get started for individuals and non-commercial projects.",
// price: "Free",
// features: [
// "Use BlockNote for free (open source license)",
// "Community Discord for help & feedback",
// ],
// href: "/docs/",
// },
{
id: "tier-starter",
mostPopular: true,
mostPopular: false,
title: "Starter",
description:
"Best for companies and organizations building products with BlockNote.",
Expand All @@ -32,6 +32,7 @@ export default function Pricing() {
{
id: "tier-business",
title: "Business",
mostPopular: true,
description:
"Best for companies that want a direct line to the team.",
price: { month: 189, year: 48 },
Expand Down
Loading