chore: Styling catalog

This commit is contained in:
2026-01-22 12:04:38 -05:00
parent 915c623c48
commit 30c86992e1
2 changed files with 44 additions and 3 deletions

View File

@@ -1,6 +1,8 @@
import { ProductCards } from "./components";
import { useEffect, useState } from "react";
import type { Product } from "../../types";
import Order from "./components/order/Order";
import styles from "./Catalog.module.css";
const Catalog = () => {
@@ -21,9 +23,14 @@ const Catalog = () => {
return (
<>
<ProductCards products={products}/>
</>
<div className={styles.layout}>
<section className={styles.catalog}>
<ProductCards products={products}/>
</section>
<aside className={styles.order}>
<Order/>
</aside>
</div>
)
}