'use client'; import { TagSelect, Rate } from '@/components'; import Image from 'next/image'; import { RightArrowIcon } from '@/assets/chatacter'; import { ReportIcon } from '@/assets/common'; import { useParams, useRouter } from 'next/navigation'; export default function CharacterBasicInfo() { const router = useRouter(); const { id } = useParams(); return (
character-basic-info
Maeve o'connell
ID
user123456
18
The Male Lead
{/* 角色评分 */} {/* 角色TAG */} {/* divider */}
{/* description */}
description Description:
{ 'description text description textdescription textdescription textdescription textdescription textdescription textdescription text' }
{/* from and chat */}
{/* FROM */}
from
Form: {" The CEO's Contract Wife"}
{/* Chat Button */}
router.push(`/character/${id}/chat`)} className="inline-flex h-12.5 w-75 items-center justify-center gap-3 rounded-full hover:cursor-pointer" style={{ background: `linear-gradient(92.76deg,rgba(166, 83, 255, 1) 0%,rgba(0, 101, 255, 1) 80%,rgba(0, 157, 255, 1) 100%)`, }} > chat Chat Now
); }