import React from 'react'; import { Profile } from '../types'; interface ProfileCardProps { profile: Profile; } export const ProfileCard: React.FC = ({ profile }) => { return (
{/* Avatar Container */}
{profile.avatarUrl ? ( {profile.name} ) : (
{profile.name.charAt(0)}
)} {/* Subtle shine overlay */}
{/* Name */}

{profile.name}

{/* Birthday */}

Born on {profile.birthday}

{/* Mood Status Bubble */}

{profile.moodStatus} 🍃

); };