You've already forked domainstack.io
mirror of
https://github.com/jakejarvis/domainstack.io.git
synced 2025-12-02 19:33:48 -05:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { FileQuestionMark } from "lucide-react";
|
|
import type { Metadata } from "next";
|
|
import { DomainSearch } from "@/components/domain/domain-search";
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/components/ui/empty";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Not Found",
|
|
description: "The page you're looking for doesn't exist.",
|
|
};
|
|
|
|
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 variant="lg" />
|
|
</EmptyContent>
|
|
</Empty>
|
|
</div>
|
|
);
|
|
}
|