feat: implement inventory and pantry management views with CRUD functionality and user-friendly interfaces

This commit is contained in:
Nils-Johan Gynther
2026-04-21 14:43:18 +02:00
parent 82c3dc3fee
commit 81b63b3fdb
14 changed files with 352 additions and 59 deletions
+4 -1
View File
@@ -4,7 +4,10 @@ import Link from 'next/link';
type Tab = { id: string; label: string };
const USER_TABS: Tab[] = [{ id: 'profil', label: 'Min profil' }];
const USER_TABS: Tab[] = [
{ id: 'profil', label: 'Min profil' },
{ id: 'databas', label: '🗄️ Databas' },
];
const ADMIN_TABS: Tab[] = [
{ id: 'profil', label: 'Min profil' },
{ id: 'anvandare', label: '👥 Användare' },