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
2025-02-15 17:41:30 +03:00

13 lines
384 B
TypeScript
Raw Permalink 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.

export default function CheckoutPage() {
return (
<div className="container mx-auto px-4 py-8">
<h1 className="text-2xl font-bold mb-6">Оформление заказа</h1>
<div className="max-w-2xl mx-auto">
{/* Checkout form goes here */}
<p>Форма оформления заказа</p>
</div>
</div>
)
}