Skip to content
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
4 changes: 1 addition & 3 deletions docs/app/docs/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import type { ReactNode } from "react";
import { Analytics } from "@vercel/analytics/react";
import { baseOptions } from "@/app/layout.config";
import { CustomDocsLayout } from "@/components/CustomDocsLayout";
import { Footer } from "@/components/Footer";
import { source } from "@/lib/source/docs";
import type { ReactNode } from "react";
import * as Sentry from "@sentry/nextjs";

export default function Layout({ children }: { children: ReactNode }) {
Expand All @@ -29,7 +28,6 @@ export default function Layout({ children }: { children: ReactNode }) {
</Sentry.ErrorBoundary>
</CustomDocsLayout>
<Footer />
<Analytics />
</>
);
}
4 changes: 1 addition & 3 deletions docs/app/examples/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import type { ReactNode } from "react";
import { Analytics } from "@vercel/analytics/react";
import { baseOptions } from "@/app/layout.config";
import { CustomDocsLayout } from "@/components/CustomDocsLayout";
import { Footer } from "@/components/Footer";
import { ProBadge } from "@/components/ProBadge";
import { source } from "@/lib/source/examples";
import { getExampleData } from "@/util/getExampleData";
import type { ReactNode } from "react";
import * as Sentry from "@sentry/nextjs";

export default function Layout({ children }: { children: ReactNode }) {
Expand Down Expand Up @@ -54,7 +53,6 @@ export default function Layout({ children }: { children: ReactNode }) {
</Sentry.ErrorBoundary>
</CustomDocsLayout>
<Footer />
<Analytics />
</>
);
}
16 changes: 8 additions & 8 deletions docs/app/layout.config.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { AuthNavButton } from "@/components/AuthNavButton";
import ThemedImage from "@/components/ThemedImage";
import LogoLight from "@/public/img/logos/banner.svg";
import LogoDark from "@/public/img/logos/banner.dark.svg";
import LogoLight from "@/public/img/logos/banner.svg";
import {
NavbarSidebarTrigger,
type DocsLayoutProps,
} from "fumadocs-ui/layouts/docs";
import { FaBook, FaCode, FaDiscord, FaGithub } from "react-icons/fa";
import { HomeLayoutProps } from "fumadocs-ui/layouts/home";
import { FaBook, FaCode, FaGithub } from "react-icons/fa";

/**
* Shared layout configurations
Expand Down Expand Up @@ -67,12 +67,12 @@ export const baseOptions: Partial<DocsLayoutProps & HomeLayoutProps> = {
url: "/about",
active: "url",
},
{
type: "icon",
icon: <FaDiscord />,
text: "Discord",
url: "https://discord.gg/Qc2QTTH5dF",
},
// {
// type: "icon",
// icon: <FaDiscord />,
// text: "Discord",
// url: "https://discord.gg/Qc2QTTH5dF",
// },
{
type: "icon",
icon: <FaGithub />,
Expand Down
3 changes: 2 additions & 1 deletion docs/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Analytics } from "@vercel/analytics/react";
import { Banner } from "fumadocs-ui/components/banner";
import { RootProvider } from "fumadocs-ui/provider";
import { Analytics } from "@vercel/analytics/react";
import { Metadata } from "next";
import type { ReactNode } from "react";
import * as Sentry from "@sentry/nextjs";
Expand Down Expand Up @@ -47,6 +47,7 @@ export default function Layout({ children }: { children: ReactNode }) {
<RootProvider>{children}</RootProvider>
</Sentry.ErrorBoundary>
<Analytics />
TRACK 1
</body>
</html>
);
Expand Down
26 changes: 11 additions & 15 deletions docs/app/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,59 +32,55 @@ const tiers: Tier[] = [
"Access to all Pro Examples",
"Prioritized Bug Reports on GitHub",
"Support maintenance and new versions of our open source library",
"XL packages only available for open source projects under GPL-3.0",
"XL packages only available for open source projects under GPL-3.0 or early stage startups",
],
},
{
id: "business",
title: "Business",
mostPopular: true,
description:
"Best for companies who need a commercial license for XL features.",
// "Best for companies who need a commercial license for XL features.",

"Best for companies that want a direct line to the team and a commercial license.",
price: { month: 390, year: 48 },
features: [
<span>
<a href="/legal/blocknote-xl-commercial-license">Commercial license</a>{" "}
for XL packages:
</span>,
<span>Commercial license for XL packages:</span>,
"- AI integration",
"- Multi-column layouts",
"- Export to PDF, Docx, ODT, Email",
"Access to all Pro Examples",
"Prioritized Bug Reports on GitHub",
"Support maintenance and new versions of our open source library",
"Logo on our website and repositories",
<span>
Standard Support included (
<a href="/legal/service-level-agreement">see SLA</a>)
</span>,
"Support maintenance and new versions of our open source library",
"Logo on our website and repositories",
],
},
{
id: "enterprise",
title: "Enterprise",
description:
"Best for companies that want a direct line to the team for dedicated consulting and support.",
"Collaborate directly with the BlockNote team for dedicated consulting and support.",
price: "Tailored pricing",
features: [
"Development of BlockNote features required for your organization",
"Access to a private Slack channel with the maintainers",
"Guidance on integrating BlockNote into your project",
<span>
<a href="/legal/blocknote-xl-commercial-license">Commercial license</a>{" "}
for XL packages:
</span>,
<span>Commercial license for XL packages:</span>,
"- AI integration",
"- Multi-column layouts",
"- Export to PDF, Docx, ODT, Email",
"Access to all Pro Examples",
"Prioritized Bug Reports and Feature Requests on GitHub",
"Support maintenance and new versions of our open source library",
"Logo on our website and repositories",
<span>
Priority Support included (
<a href="/legal/service-level-agreement">see SLA</a>)
</span>,
"Support maintenance and new versions of our open source library",
"Logo on our website and repositories",
],
href: "/about/",
},
Expand Down
Loading