mirror of
https://github.com/katanemo/plano.git
synced 2026-06-23 15:38:07 +02:00
* include contact and navbar changes * removereact references * tweak contacts APi route * change font
14 lines
536 B
TypeScript
14 lines
536 B
TypeScript
export default function DocsPage() {
|
|
return (
|
|
<section className="px-4 sm:px-6 lg:px-8 py-12 sm:py-16 lg:py-24">
|
|
<div className="max-w-[81rem] mx-auto">
|
|
<h1 className="text-4xl sm:text-5xl lg:text-7xl font-normal leading-tight tracking-tighter text-black mb-6">
|
|
<span className="font-sans">Documentation</span>
|
|
</h1>
|
|
<p className="text-lg sm:text-xl lg:text-2xl font-sans font-[400] tracking-[-1.2px] text-black/70">
|
|
Coming soon...
|
|
</p>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|