15 lines
434 B
TypeScript
15 lines
434 B
TypeScript
import { title } from "@/components/primitives";
|
|
import DefaultLayout from "@/layouts/default";
|
|
|
|
export default function DocsPage() {
|
|
return (
|
|
<DefaultLayout>
|
|
<section className="flex flex-col items-center justify-center gap-4 py-8 md:py-10">
|
|
<div className="inline-block max-w-lg text-center justify-center">
|
|
<h1 className={title()}>Docs</h1>
|
|
</div>
|
|
</section>
|
|
</DefaultLayout>
|
|
);
|
|
}
|