fix: compact filter popover; feat: i18n (de/en)
Build & Push Docker Image / build (push) Successful in 2m31s

This commit is contained in:
opencode
2026-08-02 13:42:53 +02:00
parent 95bf49509c
commit 2f38889726
19 changed files with 662 additions and 160 deletions
+4 -2
View File
@@ -2,8 +2,10 @@ import { Card, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { Wrench, ArrowLeft } from "lucide-react";
import { Link } from "wouter";
import { useTranslation } from "react-i18next";
export default function NotFound() {
const { t } = useTranslation();
return (
<div className="min-h-screen w-full flex items-center justify-center bg-background">
<Card className="w-full max-w-md mx-4">
@@ -13,10 +15,10 @@ export default function NotFound() {
<span>toolr</span>
</Link>
<h1 className="text-6xl font-bold text-muted-foreground/30 mb-2">404</h1>
<p className="text-muted-foreground mb-6">This page doesn't exist.</p>
<p className="text-muted-foreground mb-6">{t("notFound.text")}</p>
<Link href="/">
<Button variant="outline" className="gap-2">
<ArrowLeft className="w-4 h-4" /> Back to Home
<ArrowLeft className="w-4 h-4" /> {t("notFound.backHome")}
</Button>
</Link>
</CardContent>