"use client"; import { useTranslations } from "next-intl"; export function NewRecipeHeader() { const t = useTranslations("recipes"); return (

{t("newTitle")}

{t("newSubtitle")}

); }