feat: implement skill management system with database schema, server actions, and dynamic tech stack section

This commit is contained in:
Yolando
2026-04-03 17:54:02 +07:00
parent 43858ce798
commit 9f3510df8f
9 changed files with 102 additions and 36 deletions

View File

@@ -38,6 +38,7 @@ model Skill {
name String
iconName String? @map("icon_name")
category String
sortOrder Int @default(0) @map("sort_order")
projects ProjectSkill[]