import { getCurrentUser } from "@/lib/userAuth";
import { Header } from "@/components/shell/Header";
import { Link } from "@/i18n/navigation";
import { getTranslations } from "next-intl/server";
export const NotFound = async () => {
const user = await getCurrentUser();
const t = await getTranslations("not_found");
return (
<>
404
{t("title")}
{t("back_to_home")}
>
);
};