"use client"; import { Card } from "@/components/ui/Card"; const courses = [ { id: "c1", title: "React 19 完全指南", instructor: "张老师", price: 199, cover: "📘" }, { id: "c2", title: "TypeScript 高级编程", instructor: "李老师", price: 149, cover: "📙" }, { id: "c3", title: "Node.js 后端实战", instructor: "王老师", price: 249, cover: "📗" }, ]; export default function CoursePage() { return (

课程中心

{courses.map(c => (
{c.cover}

{c.title}

{c.instructor}

¥{c.price}

))}
); }