PTH
Phạm thiên hưng
Profile Page - Copy this React, Tailwind Component to your project
Design for me a profile page for the user ( have followers count ) prisma schema "model User { id String @id @default(uuid()) clerkId String @unique userName String userEmail String @unique userBiography String @default("") userAvatar String accountCreatedAt DateTime @default(now()) updatedAt DateTime @updatedAt // deletedAt DateTime @default() isAuthorizedUser Boolean @default(false) followers String[] @default([]) followedByUsers String[] @default([]) notifications Notification[] @relation("UserNotifications") // Back relation @@index([accountCreatedAt]) }"
Prompt
