higgys-android-website/app/not-found.tsx

17 lines
530 B
TypeScript

import Link from "next/link"
import { Button } from "@/components/ui/button"
export default function NotFound() {
return (
<div className="min-h-screen flex flex-col items-center justify-center text-center px-4">
<h1 className="text-6xl font-bold mb-4">404</h1>
<p className="text-xl text-muted-foreground mb-8">
This page could not be found.
</p>
<Button asChild className="bg-[#8BC34A] hover:bg-[#7CB342] text-white">
<Link href="/">Go Home</Link>
</Button>
</div>
)
}