diff --git a/frontend/app/matplan/page.tsx b/frontend/app/matplan/page.tsx deleted file mode 100644 index 231b6562..00000000 --- a/frontend/app/matplan/page.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import { fetchJson } from '../../lib/api'; -import type { Recipe } from '../../features/inventory/types'; -import Navigation from '../Navigation'; -import MealPlanClient from './MealPlanClient'; - -export default async function MealPlanPage() { - const recipes = await fetchJson('/api/recipes').catch(() => [] as Recipe[]); - return ( -
- -

Matsedel

-

- Välj ett recept per dag — se en samlad ingredienslista i slutet. -

- -
- ); -}