hide product price

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-02-19 08:42:36 +05:00
parent c1e70491f8
commit 9608ed23ac
2 changed files with 3 additions and 3 deletions

View File

@@ -114,12 +114,12 @@ export function RightSide({
{/* Price Section */} {/* Price Section */}
<div className="bg-[#1716169f] rounded-xl p-5 space-y-6"> <div className="bg-[#1716169f] rounded-xl p-5 space-y-6">
{/* Price */} {/* Price */}
<div> {/* <div>
<p className="text-gray-400 text-sm mb-2">{t("products.price")}:</p> <p className="text-gray-400 text-sm mb-2">{t("products.price")}:</p>
<h2 className="text-3xl md:text-4xl font-bold text-red-700"> <h2 className="text-3xl md:text-4xl font-bold text-red-700">
${price} ${price}
</h2> </h2>
</div> </div> */}
{/* Action Button */} {/* Action Button */}
<button <button

View File

@@ -13,7 +13,7 @@ function BreadcrumbList({ className, ...props }: React.ComponentProps<'ol'>) {
<ol <ol
data-slot="breadcrumb-list" data-slot="breadcrumb-list"
className={cn( className={cn(
'text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm break-words sm:gap-2.5', 'text-muted-foreground flex flex-wrap items-center gap-1.5 text-sm wrap-break-words sm:gap-2.5',
className, className,
)} )}
{...props} {...props}