feat(recipes): full recipe CRUD with photos, print, version history
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.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user