mirror of
https://github.com/jakejarvis/hoot.git
synced 2025-10-18 22:34:25 -04:00
33 lines
923 B
TypeScript
33 lines
923 B
TypeScript
import { FileQuestionMark } from "lucide-react";
|
|
import { DomainSearch } from "@/components/domain/domain-search";
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/components/ui/empty";
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div className="container mx-auto my-auto flex items-center justify-center px-6">
|
|
<Empty>
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="icon">
|
|
<FileQuestionMark />
|
|
</EmptyMedia>
|
|
<EmptyTitle>404 - Not Found</EmptyTitle>
|
|
<EmptyDescription>
|
|
<p>The page you're looking for doesn't exist.</p>{" "}
|
|
<p>Try searching for a domain below.</p>
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
<EmptyContent className="w-full">
|
|
<DomainSearch showSuggestions={false} />
|
|
</EmptyContent>
|
|
</Empty>
|
|
</div>
|
|
);
|
|
}
|