From 66ccc5cf03d4b2de0535a1b4177eac195519ab0e Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Thu, 20 Feb 2025 09:13:09 -0600 Subject: [PATCH] Create temp recipe page --- app/admin/recipe/page.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 app/admin/recipe/page.tsx 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 && + + } + } + /> + ); +} +