This requires the issue https://github.com/Different-OpenSource/DigitalMenu/issues/18 to be completed and deployed. Add a few mock items to the database to be displayed. ```typescript interface Item { id: string title: string; description: string; price: number; image: string; category: string; } ```