import { AvatarImage, AvatarFallback, Avatar } from '@radix-ui/react-avatar'; import ChatButton from './ChatButton'; export default async function Page({ params }: { params: Promise<{ id: string }> }) { const { id } = await params; const user = { name: 'Honey Snow', headImage: 'https://picsum.photos/200/300', nickname: 'Crush', }; return (