first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-02-12 23:25:43 -05:00
commit d8c7ec4866
1400 changed files with 90826 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
'use client'
import { useContextElement } from "@/context/Context";
import React from "react";
const Coupon = () => {
const {cartProducts} = useContextElement()
return (
<div className="coupon-section d-flex flex-column">
{!cartProducts.length ? <></> :
<div className="coupon-form d-lg-flex align-items-center">
<input type="text" placeholder="Enter your code" />
<button className="theme-btn-seven md-mt-20 sm-mb-20">
Apply Coupne
</button>
</div> }
{/* <!-- /.coupon-form --> */}
<div className="mt-auto">
<button className="theme-btn-seven update-cart-button">
Update cart
</button>
</div>
</div>
);
};
export default Coupon;