feat: add Event interface, implement core Prisma seeding, and create admin categories management page
All checks were successful
Build and Push App / build (push) Successful in 11m4s

This commit is contained in:
2026-04-24 14:39:01 +02:00
parent 11678e0b33
commit 3c58e60b33
12 changed files with 176 additions and 592 deletions

View File

@@ -42,7 +42,7 @@
"dependencies": {
"@google/genai": "^1.30.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.6.0",
"@prisma/client": "^7.7.0",
"@prisma/config": "^7.6.0",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/typography": "^0.5.19",
@@ -56,7 +56,7 @@
"next": "^16.1.6",
"pg": "^8.19.0",
"postcss": "^8.5.10",
"prisma": "^7.6.0",
"prisma": "^7.7.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hot-toast": "^2.6.0",

View File

@@ -371,7 +371,7 @@ export default function CategoriesPage() {
}`}
title={item.name}
>
{typeof item.icon === 'function' ? item.icon() : <item.icon className="w-5 h-5" />}
<item.icon className="w-5 h-5" />
</button>
))}
</div>