feat: Add website (#1157)

Co-authored-by: Bjorn Lammers <bjorn@lammers.media>
This commit is contained in:
Thomas Camlong
2025-04-16 16:18:20 +02:00
committed by GitHub
parent f46843795d
commit bfe293f090
86 changed files with 13563 additions and 1269 deletions

30
web/src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,30 @@
import { Button } from "@/components/ui/button"
import { AlertTriangle, ArrowLeft } from "lucide-react"
import Link from "next/link"
export default function NotFound({
error,
}: {
error: Error & { digest?: string }
}) {
return (
<div className="py-16 flex items-center justify-center">
<div className="text-center space-y-6 max-w-md">
<div className="mx-auto w-16 h-16 bg-red-100 dark:bg-red-900/20 rounded-full flex items-center justify-center text-red-600 dark:text-red-400">
<AlertTriangle className="w-8 h-8" />
</div>
<h1 className="text-2xl font-bold">Icon not found</h1>
<p className="text-muted-foreground">The icon you are looking for could not be found or there was an error loading it.</p>
<p className="text-muted-foreground">If you believe this is an error, please contact the maintainers of the repository.</p>
<div className="flex flex-col sm:flex-row gap-4 justify-center pt-4">
<Button asChild>
<Link href="/icons">
<ArrowLeft className="mr-2 h-4 w-4" />
Back to all icons
</Link>
</Button>
</div>
</div>
</div>
)
}