mirror of
https://github.com/katanemo/plano.git
synced 2026-04-25 00:36:34 +02:00
10 lines
275 B
TypeScript
10 lines
275 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
export function BlogSectionHeader() {
|
||
|
|
return (
|
||
|
|
<h2 className="text-2xl sm:text-3xl lg:text-4xl font-normal leading-tight tracking-tighter text-black mb-12">
|
||
|
|
<span className="font-sans">The latest and greatest from our blog.</span>
|
||
|
|
</h2>
|
||
|
|
);
|
||
|
|
}
|