16 lines
466 B
TypeScript
16 lines
466 B
TypeScript
import type { Metadata } from "next";
|
|
import { CartView } from "./cart-view";
|
|
|
|
export const metadata: Metadata = { title: "Cart" };
|
|
|
|
export default function CartPage() {
|
|
return (
|
|
<div className="max-w-4xl">
|
|
<div className="mb-6">
|
|
<h1 className="text-2xl font-semibold text-neutral-900">Cart</h1>
|
|
<p className="text-sm text-neutral-500 mt-0.5">Review items and create a Purchase Order</p>
|
|
</div>
|
|
<CartView />
|
|
</div>
|
|
);
|
|
}
|