This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/style/app/cart/page.tsx

20 lines
514 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>
)
}