"use client"; import { useTranslations } from "next-intl"; export function PlaceholderPage({ titleKey }: { titleKey: string }) { const tNav = useTranslations("nav"); const tCommon = useTranslations("common"); return (

{tNav(titleKey as "crm")} — {tCommon("comingSoon")}

); }