Сверстали страницу корзины

This commit is contained in:
isHardCoded
2025-07-31 11:59:52 +03:00
parent c2d14e90fe
commit 61d10e2bbf
9 changed files with 721 additions and 47 deletions
+6 -1
View File
@@ -2,12 +2,17 @@ import styles from './index.module.scss'
import Header from '../../components/header'
import CartList from '../../components/list/cart'
import OrderDetail from '../../components/OrderDetail'
const Cart = () => {
return (
<div className={styles.container}>
<Header />
<CartList />
<h1 style={{ marginTop: 24 }}>Your Cart</h1>
<div style={{ display: 'flex', gap: 20 }}>
<CartList />
<OrderDetail />
</div>
</div>
)
}