diff --git a/app/admin/recipe/[photoId]/page.tsx b/app/admin/recipe/[photoId]/page.tsx
index 322a140a..f8129146 100644
--- a/app/admin/recipe/[photoId]/page.tsx
+++ b/app/admin/recipe/[photoId]/page.tsx
@@ -1,6 +1,6 @@
import SiteGrid from '@/components/SiteGrid';
import { getPhoto, getPhotos } from '@/photo/db/query';
-import PhotoRecipeOverlay from '@/photo/PhotoRecipeOverlay';
+import PhotoRecipeOverlay from '@/recipe/PhotoRecipeOverlay';
export default async function AdminRecipePage({
params,
diff --git a/app/admin/recipe/page.tsx b/app/admin/recipe/page.tsx
index 5329b230..67f01aa4 100644
--- a/app/admin/recipe/page.tsx
+++ b/app/admin/recipe/page.tsx
@@ -1,5 +1,5 @@
import { getPhoto, getPhotos } from '@/photo/db/query';
-import PhotoRecipeOverlay from '@/photo/PhotoRecipeOverlay';
+import PhotoRecipeOverlay from '@/recipe/PhotoRecipeOverlay';
export default async function AdminRecipePage() {
const [
diff --git a/app/layout.tsx b/app/layout.tsx
index b4f37c38..60efe2c7 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -22,6 +22,7 @@ import AdminBatchEditPanel from '@/admin/AdminBatchEditPanel';
import ShareModals from '@/share/ShareModals';
import AdminUploadPanel from '@/admin/upload/AdminUploadPanel';
import { revalidatePath } from 'next/cache';
+import RecipeModal from '@/recipe/RecipeModal';
import '../tailwind.css';
@@ -86,6 +87,7 @@ export default function RootLayout({
)}>