styling friday

This commit is contained in:
2025-06-27 12:01:46 -04:00
parent 29c91fee7f
commit 216d10855f
14 changed files with 309 additions and 67 deletions

View File

@@ -8,13 +8,13 @@ export default async function UserPage({ params }: { params: { username: string
const username = raw.startsWith('@') ? raw.slice(1) : raw
const user = await prisma.user.findUnique({
where: { username },
select: {
id: true,
email: true,
name: true,
role: true,
createdAt: true,
where: { username },
select: {
id: true,
email: true,
name: true,
role: true,
createdAt: true,
},
})