212d6f7335
Root layout used title.template ("%s | Epicure") and 38 pages set
their own title, producing "Recipes | Epicure", "Messages — Epicure",
etc. Drop the template, set a flat "Epicure" default, and clear every
page's title override so they all inherit it.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
19 lines
548 B
TypeScript
19 lines
548 B
TypeScript
import type { Metadata } from "next";
|
|
import { RecipeForm } from "@/components/recipe/recipe-form";
|
|
import { NewRecipeHeader } from "@/components/recipe/new-recipe-header";
|
|
import { PhotoImportButton } from "@/components/recipe/photo-import-button";
|
|
|
|
export const metadata: Metadata = {};
|
|
|
|
export default function NewRecipePage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex items-start justify-between gap-4">
|
|
<NewRecipeHeader />
|
|
<PhotoImportButton />
|
|
</div>
|
|
<RecipeForm />
|
|
</div>
|
|
);
|
|
}
|