Merge version_1 into main #3

Merged
bender merged 4 commits from version_1 into main 2026-02-23 14:03:22 +00:00
4 changed files with 6 additions and 6 deletions

View File

@@ -45,7 +45,7 @@ export default function BlogPage() {
</div>
) : (
<BlogCardOne
items={posts}
posts={posts}
/>
)}
</div>

View File

@@ -155,9 +155,9 @@ export default function Home() {
}
]}
kpiItems={[
{ value: "4.9/5", description: "Average Rating" },
{ value: "87%", description: "Repeat Customers" },
{ value: "98%", description: "Satisfaction Rate" }
{ id: "rating", value: "4.9/5" },
{ id: "repeat", value: "87%" },
{ id: "satisfaction", value: "98%" }
]}
/>
</div>

View File

@@ -58,7 +58,7 @@ export default function ProductDetailPage({ params }: PageProps) {
</div>
) : product ? (
<ProductDetailCard
item={product}
product={product}
onBackClick={handleBackClick}
/>
) : (

View File

@@ -47,7 +47,7 @@ export default function ShopPage() {
</div>
) : (
<ProductCatalog
items={products}
products={products}
/>
)}
</div>