production ready

This commit is contained in:
2025-04-12 18:07:10 +07:00
parent da85bc0bbf
commit ad9904d5d5
31 changed files with 115 additions and 1120 deletions

View File

@@ -87,13 +87,13 @@ export default async function DocsPage({ params: { slug = [] } }: PageProps) {
<h1 className="text-3xl !-mt-0.5">{title}</h1>
<p className="-mt-4 text-muted-foreground text-[16.5px]">{description}</p>
<div>{res.content}</div>
<div className="my-8 flex justify-between items-center border-b-2 border-x-muted-foreground">
<div className="my-8 flex justify-end items-center border-b-2 border-x-muted-foreground">
{date && (
<p className="text-[13px] text-muted-foreground">
Published on {formatDate2(date)}
</p>
)}
<EditThisPage filePath={filePath} />
{/* <EditThisPage filePath={filePath} /> */}
</div>
<Pagination pathname={pathName} />
</Typography>