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 (

Matplanering

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

); }