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

核心模块

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