initial docs

This commit is contained in:
2025-04-12 14:34:53 +07:00
commit ea9a71e23c
138 changed files with 23045 additions and 0 deletions

19
app/not-found.tsx Normal file
View File

@@ -0,0 +1,19 @@
import { buttonVariants } from "@/components/ui/button";
import Link from "next/link";
export default function NotFound() {
return (
<div className="min-h-[87vh] px-2 sm:py-28 py-36 flex flex-col gap-4 items-center">
<div className="text-center flex flex-col items-center justify-center w-fit gap-2">
<h2 className="text-7xl font-bold pr-1">404</h2>
<p className="text-muted-foreground text-md font-medium">
Page not found {":("}
</p>
<p>Oops! The page you&apos;re looking for doesn&apos;t exist.</p>
</div>
<Link href="/" className={buttonVariants({})}>
Back to homepage
</Link>
</div>
);
}