84d6cfeb07
List, detail, new, edit pages. Server-side pagination, dietary tags, difficulty. Photo upload to S3-compatible storage. Version history. Multi-select grid with bulk delete/visibility. Print view. Delete confirmation dialog.
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
"use client";
|
|
import { useTranslations } from "next-intl";
|
|
export function NewRecipeHeader() {
|
|
const t = useTranslations("recipes");
|
|
return (
|
|
<div>
|
|
<h1 className="text-3xl font-bold tracking-tight">{t("newTitle")}</h1>
|
|
<p className="text-muted-foreground mt-1">{t("newSubtitle")}</p>
|
|
</div>
|
|
);
|
|
}
|