"use client"; import Link from "next/link"; import { FileQuestion, Home } from "lucide-react"; import { useTranslation } from "react-i18next"; import { PlayerMobileViewport } from "@/components/layout/player-mobile-viewport"; import { playerViewportColumnClass } from "@/lib/player-viewport"; import { cn } from "@/lib/utils"; import "@/i18n"; export default function NotFoundPage(): React.ReactElement { const { t } = useTranslation("player"); return (

404

{t("notFound.title")}

{t("notFound.description")}

{t("notFound.home")}
{t("notFound.hall")} | {t("notFound.results")} | {t("notFound.funds")}

Lottery © {new Date().getFullYear()}

); }