"use client"; import Link from "next/link"; import { TOPICS } from "@/app/data/vip.mock"; import styles from "../vip.module.css"; export function TopicCards() { return (

模块入口

{TOPICS.map((t) => { const content = ( <> {t.icon} {t.title} {t.desc} ); if (t.href) { return ( {content} ); } return (
{content}
); })}
); }