Skip to content

Commit cdca494

Browse files
committed
small fixes
1 parent fa994d4 commit cdca494

2 files changed

Lines changed: 33 additions & 33 deletions

File tree

docs/app/(home)/_components/USP.tsx

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1+
import Link from "next/link";
12
import { SpotlightCard } from "./SpotlightCard";
23

34
export const USP = () => {
45
return (
56
<section className="bg-white/50 py-24 backdrop-blur-sm">
67
<div className="mx-auto max-w-7xl px-6">
7-
<div className="mx-auto mb-20 max-w-2xl text-center">
8+
<div className="mx-auto mb-20 max-w-3xl text-center">
89
<h2 className="mb-6 font-serif text-4xl text-stone-900">
9-
?? The editor you'd build, if you had the time.
10+
The editor you'd build, if you had the time.
1011
</h2>
11-
<p className="text-lg text-stone-500">
12+
{/* <p className="text-lg text-stone-500">
1213
BlockNote combines a premium editing experience with the flexibility
1314
of open standards. Zero compromise.
14-
</p>
15+
</p> */}
1516
</div>
1617

1718
<div className="grid gap-8 md:grid-cols-3">
@@ -20,55 +21,54 @@ export const USP = () => {
2021
2122
</div>
2223
<h3 className="mb-3 font-serif text-2xl text-stone-900">
23-
?? Notion-Quality UX
24+
Batteries included UX
2425
</h3>
2526
<p className="relative z-10 mb-6 text-stone-500">
26-
Give your users the modern, block-based experience they expect.
27-
Slash commands, drag-and-drop, and real-time collaboration.
27+
Stop building rich text editors from scratch. BlockNote comes with
28+
a polished, modern UI that works out of the box.
2829
</p>
29-
<div className="rounded-lg border border-stone-100 bg-stone-50 p-4 font-mono text-xs text-stone-400">
30-
/image
31-
<br />
32-
<span className="text-purple-500">Uploading...</span>
33-
</div>
3430
</SpotlightCard>
3531

3632
<SpotlightCard className="group p-8 shadow-xl shadow-stone-200/50">
3733
<div className="mb-6 flex h-12 w-12 items-center justify-center rounded-xl border border-blue-100 bg-blue-50 text-2xl text-blue-600 transition-transform duration-500 group-hover:scale-110">
38-
🛡
34+
🛠
3935
</div>
4036
<h3 className="mb-3 font-serif text-2xl text-stone-900">
41-
?? Sovereign Infrastructure
37+
Built for Developers
4238
</h3>
4339
<p className="relative z-10 mb-6 text-stone-500">
44-
?? 100% open source and self-hostable. Own your data, extend the
45-
core, and never worry about platform risk.
40+
Forget low-level editor internals. We abstract away the complex
41+
parts and give you a type-safe, intuitive API.
4642
</p>
47-
<div className="flex gap-2 text-[10px] font-bold uppercase tracking-wider text-stone-400">
48-
<span className="rounded bg-blue-100 px-2 py-1 text-blue-700">
49-
MIT / MPL
50-
</span>
51-
<span className="rounded bg-stone-100 px-2 py-1 text-stone-600">
52-
Local-First
53-
</span>
54-
</div>
5543
</SpotlightCard>
5644

5745
<SpotlightCard className="group p-8 shadow-xl shadow-stone-200/50">
5846
<div className="mb-6 flex h-12 w-12 items-center justify-center rounded-xl border border-amber-100 bg-amber-50 text-2xl text-amber-600 transition-transform duration-500 group-hover:scale-110">
59-
🧠
47+
🤝
6048
</div>
6149
<h3 className="mb-3 font-serif text-2xl text-stone-900">
62-
?? Intelligence You Own
50+
Partnerships
6351
</h3>
6452
<p className="relative z-10 mb-6 text-stone-500">
65-
Add AI features like autocomplete and rewriting without leaking
66-
data. Bring your own model, run it anywhere.
53+
<Link
54+
className="underline decoration-dotted underline-offset-2 hover:decoration-solid"
55+
href="/pricing"
56+
>
57+
Upgrade
58+
</Link>{" "}
59+
to unlock AI support for commercial products, or partner with our
60+
team for advanced integrations and support.
6761
</p>
68-
<div className="flex justify-center gap-2 rounded-lg border border-stone-100 bg-stone-50 p-2">
69-
<div className="h-2 w-2 rounded-full bg-stone-300"></div>
70-
<div className="h-2 w-16 rounded-full bg-stone-200"></div>
71-
<div className="h-2 w-4 rounded-full bg-amber-200"></div>
62+
<div className="mt-2 flex w-full flex-col gap-3">
63+
<a
64+
href="mailto:team@blocknotejs.org"
65+
className="flex w-full items-center justify-center rounded-lg bg-orange-600 px-4 py-2 text-sm font-bold text-white shadow-md transition-all hover:scale-105 hover:bg-orange-700 hover:shadow-lg"
66+
>
67+
Contact Us
68+
</a>
69+
<div className="text-center text-[10px] font-medium uppercase tracking-widest text-stone-400">
70+
For Enterprise
71+
</div>
7272
</div>
7373
</SpotlightCard>
7474
</div>

docs/app/pricing/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ const tiers: Tier[] = [
133133
)
134134
</span>,
135135
],
136-
href: "/about/",
136+
href: "mailto:team@blocknotejs.org",
137137
cta: "contact",
138138
},
139139
];

0 commit comments

Comments
 (0)