import { IconSubmissionContent } from "@/components/icon-submission-form" import { Button } from "@/components/ui/button" import { AlertTriangle, ArrowLeft, PlusCircle } from "lucide-react" import Link from "next/link" export default function NotFound({ error, }: { error: Error & { digest?: string } }) { return (

Not found

This icon does not exist or could not be loaded.

Missing an icon?

Submit a new icon or suggest improvements to our collection.

) }