"use client"; import { Link2Off } from "lucide-react"; import Link from "next/link"; import { useTranslations } from "next-intl"; import { Navbar } from "@/components/homepage/navbar"; export function PublicChatNotFound() { const t = useTranslations("public_chat"); return (

{t("not_found_title")}

{t("click_here")} {" "} {t("sign_in_prompt")}

); }