diff --git a/app/admin/recipe/page.tsx b/app/admin/recipe/page.tsx new file mode 100644 index 00000000..5a2a72d5 --- /dev/null +++ b/app/admin/recipe/page.tsx @@ -0,0 +1,22 @@ +import SiteGrid from '@/components/SiteGrid'; +import { getPhotos } from '@/photo/db/query'; +import PhotoRecipe from '@/photo/PhotoRecipe'; +import clsx from 'clsx/lite'; + +export default async function AdminRecipePage() { + const photos = await getPhotos({ hidden: 'only' }); + const { fujifilmRecipe } = photos[0]; + return ( + + {fujifilmRecipe && + + } + } + /> + ); +} +