diff --git a/app/admin/recipe/[photoId]/page.tsx b/app/admin/recipe/[photoId]/page.tsx
deleted file mode 100644
index 322a140a..00000000
--- a/app/admin/recipe/[photoId]/page.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import SiteGrid from '@/components/SiteGrid';
-import { getPhoto, getPhotos } from '@/photo/db/query';
-import PhotoRecipeOverlay from '@/photo/PhotoRecipeOverlay';
-
-export default async function AdminRecipePage({
- params,
-}: {
- params: Promise<{ photoId: string }>
-}) {
- const { photoId } = await params;
- const photo = await getPhoto(photoId);
- const photosHidden = await getPhotos({ hidden: 'only' });
- const { filmSimulation } = photo!;
- const { fujifilmRecipe } = photosHidden[0];
-
- return (
-