import UserPosts from '@/components/UserPosts'; import UserProfile from '@/components/UserProfile'; import { getConvexClient } from '@/lib/convex'; import { api } from '../../../../convex/_generated/api'; export default async function UserProfilePage({ params, }: { params: { id: string }; }) { const client = await getConvexClient(); const user = await client.query(api.users.getUserByClerkId, { clerkUserId: params.id, }); if (user === 'USER_NOT_FOUND') { // TODO: Show real not found component return
Not Found
; } return (
); }