feat: implement project showcase section with database integration, filtering, and detail modals
This commit is contained in:
@@ -22,12 +22,17 @@ model Project {
|
||||
slug String @unique
|
||||
description String @db.Text
|
||||
imageUrl String? @map("image_url")
|
||||
imageUrls String[] @default([]) @map("image_urls")
|
||||
repoUrl String? @map("repo_url")
|
||||
liveUrl String? @map("live_url")
|
||||
category String
|
||||
isPublished Boolean @default(false) @map("is_published")
|
||||
createdAt DateTime @default(now()) @map("created_at")
|
||||
|
||||
techStack String[]
|
||||
year Int?
|
||||
highlights String[]
|
||||
|
||||
skills ProjectSkill[]
|
||||
|
||||
@@map("projects")
|
||||
|
||||
Reference in New Issue
Block a user