"use client" import { logger } from "@frontend/lib/logger" import { LoggerErrorEnum } from "@shared/enums/logger-error-enum" import Link from "next/link" import { type LocaleType } from "@shared/i18n/t" import { t_notFoundDescription, t_notFoundLink, t_notFoundTitle, } from "@shared/i18n/messages/t-not-found-error" import MyButton from "@frontend/components/user-input/my-button" export default function NotFound({ locale, pathname, handler, }: { locale: LocaleType pathname: string handler: string }) { logger.warn({ msg: "Page Not Found - 404", handler, pathname, type: LoggerErrorEnum.USERLAND_ERROR, }) return ( <>
{t_notFoundDescription(locale)}