import Link from "next/link"; import { getI18n } from "locales/server"; import { buttonVariants } from "@/components/ui/button"; export async function Page404() { const t = await getI18n(); return (

{t("commons.looks_like_you_are_lost")}

{t("commons.the_page_you_are_looking_for_is_not_available")}

{t("commons.go_back")}
); }