Init(Coore): add to repo

This commit is contained in:
2026-04-24 16:20:36 +03:30
commit 893cdcb89c
91 changed files with 13751 additions and 0 deletions

14
components/DiscountedPrices.js Executable file
View File

@@ -0,0 +1,14 @@
export default function DiscountedPrices({price, discounted}){
return (
<div className="flex flex-col items-center">
<div className="flex items-center text-gray-500 line-through">
<span className="text-xl pl-2">{discounted}</span>
<span className="text-xl">تومان</span>
</div>
<div className="flex items-center">
<span className="text-2xl font-bold pl-2">{price}</span>
<span className="text-xl">تومان</span>
</div>
</div>
);
}