"use client"; import Link from "next/link"; import { useI18n } from "@/lib/i18n"; import type { MemberProfile } from "@/lib/types"; export default function MemberProfileClient({ profile }: { profile: MemberProfile }) { const { t } = useI18n(); const photo = profile.photo || ""; const isUrl = photo.startsWith("http"); return (
{profile.location || "全球游民"}
{profile.bio || "这位游民还没写自我介绍"}