import { Button } from '@/components/ui/button'; import { AvatarImage, AvatarFallback, Avatar } from '@radix-ui/react-avatar'; import Link from 'next/link'; 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 (
{user?.nickname?.slice(0, 1)}
{user?.name}
{user?.nickname}
Introduction
She is a new and beautiful teacher and has just graduated. You are the most rebellious student of the whole school workers. She is a new and beautiful teacher and has just graduated. You are the most rebellious student of the whole school workers. In...
); }