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:
Arnaud
2026-07-01 08:10:11 +02:00
parent fa2d797918
commit 84d6cfeb07
45 changed files with 5300 additions and 0 deletions
@@ -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>
);
}