diff --git a/src/app/core/layouts/header/header.html b/src/app/core/layouts/header/header.html
index cc34412..c2c6a7e 100644
--- a/src/app/core/layouts/header/header.html
+++ b/src/app/core/layouts/header/header.html
@@ -3,7 +3,7 @@
class="bg-gray-50 wrapper py-4 flex gap-x-5 sm:gap-x-10 items-center shadow-lg shadow-gray-400/20"
>
diff --git a/src/app/features/product/components/product-card/product-card.html b/src/app/features/product/components/product-card/product-card.html
index 73f1c6f..6a68712 100644
--- a/src/app/features/product/components/product-card/product-card.html
+++ b/src/app/features/product/components/product-card/product-card.html
@@ -5,15 +5,25 @@
class="absolute top-5 right-5"
/>
-
+
-
{{ product.title }}
-
⭐4.5
-
- Price:
- {{ product.actualPrice }}
- {{ product.listPrice }}/-
-
+
+
+ {{ product.title }}
+
+
⭐4.5
+
+
+
+
Rs. {{ product.listPrice }}
+
Rs. {{ product.actualPrice }}
+
+
+
+
+
diff --git a/src/app/features/product/components/product-card/product-card.ts b/src/app/features/product/components/product-card/product-card.ts
index 04e3263..6abd996 100644
--- a/src/app/features/product/components/product-card/product-card.ts
+++ b/src/app/features/product/components/product-card/product-card.ts
@@ -2,15 +2,17 @@ import { Component, inject, Input } from "@angular/core";
import { ProductModel } from "../../../../core/models/product.model";
import { Router } from "@angular/router";
import { FavoriteButton } from "../../../../shared/components/favorite-button/favorite-button";
+import { LucideAngularModule, ShoppingCart } from "lucide-angular";
@Component({
selector: "app-product-card",
standalone: true,
- imports: [FavoriteButton],
+ imports: [FavoriteButton, LucideAngularModule],
templateUrl: "./product-card.html",
})
export class ProductCard {
readonly router = inject(Router);
+ readonly ShoppingCartIcon = ShoppingCart;
@Input() product!: ProductModel;
diff --git a/src/app/features/product/product.html b/src/app/features/product/product.html
index 67121c9..c94f682 100644
--- a/src/app/features/product/product.html
+++ b/src/app/features/product/product.html
@@ -4,7 +4,7 @@
Our Product
-
+
@for (product of products(); track product) {
}
diff --git a/src/app/features/product/show-product/show-product.html b/src/app/features/product/show-product/show-product.html
index 8ccf6be..c90e589 100644
--- a/src/app/features/product/show-product/show-product.html
+++ b/src/app/features/product/show-product/show-product.html
@@ -23,15 +23,15 @@
/>
@@ -104,7 +104,7 @@