13 lines
443 B
TypeScript
13 lines
443 B
TypeScript
"use client";
|
|
import { Card } from "@/components/ui/Card";
|
|
import { Button } from "@/components/ui/Button";
|
|
|
|
export default function CartPage() {
|
|
return (
|
|
<div className="space-y-4">
|
|
<h1 className="text-xl font-bold text-gray-800">购物车</h1>
|
|
<Card><p className="text-sm text-gray-500">购物车功能开发中...</p></Card>
|
|
<Button variant="primary" className="w-full" size="lg">去结算</Button>
|
|
</div>
|
|
);
|
|
} |