20 lines
514 B
TypeScript
20 lines
514 B
TypeScript
import { CartItems } from "@/components/cart-items"
|
||
import { CartSummary } from "@/components/cart-summary"
|
||
|
||
export default function CartPage() {
|
||
return (
|
||
<div className="container mx-auto px-4 py-8">
|
||
<h1 className="text-2xl font-bold mb-6">Корзина</h1>
|
||
<div className="flex flex-col md:flex-row gap-8">
|
||
<div className="flex-1">
|
||
<CartItems />
|
||
</div>
|
||
<div className="w-full md:w-80">
|
||
<CartSummary />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|
||
|