/** * Next.js 404 page. Shown when notFound() is called or route is unknown. * For static export with a single route this is rarely hit; added for consistency. */ "use client"; import Link from "next/link"; import { useTranslation } from "@/i18n/use-translation"; export default function NotFound() { const { t } = useTranslation(); return (
{t("not_found.description")}
{t("not_found.open_calendar")}