"use client"; import Image from "next/image"; import { RECENT_JOINERS } from "@/config/home.config"; export default function AvatarStack() { return (
{RECENT_JOINERS.slice(0, 6).map((u, i) => (
{u.name}
))}
{RECENT_JOINERS.slice(0, 3).map((u) => u.name).join("、")} 等有报名意向
); }