// React + Tailwind component: Realistic-looking male character card // Note: This does not depict a real person, but creates a lifelike character import { Card, CardContent } from @/components/ui/card ; import { motion } from framer-motion ; import Image from next/image ; export default function MaleCharacterCard() { return ( <motion.div initial={{ opacity: 0, y: 30 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.6 }} className= max-w-md mx-auto p-4 > <Card className= rounded-2xl shadow-xl overflow-hidden > <Image src= /images/realistic_male_character.jpg // Replace with your AI-generated image alt= Realistic Male Character width={400} height={500} className= w-full object-cover h-96 /> <CardContent className= p-4 > <h2 className= text-xl font-semibold >Ad: Emir Valizade</h2> <p className= text-gray-600 >Yaş: 28</p> <p className= mt-2 text-gray-700 > Açık tenli, hafif dalgalı koyu kumral saçlı, belirgin çene hattı ve yoğun bakışlı bir adam. Şehirli ama kültürel bağlarını kaybetmemiş, mimar olarak çalışıyor. Giyimi sade ve şıktır. </p> </CardContent> </Card> </motion.div> ); }