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

模块入口

{TOPICS.map((topic: TopicItem) => { const content = ( <> {topic.icon} {topic.title} {topic.desc} ); return ( {content} ); })}
); }