Merge version_1 into main #3
@@ -45,7 +45,7 @@ export default function BlogPage() {
|
||||
</div>
|
||||
) : (
|
||||
<BlogCardOne
|
||||
items={posts}
|
||||
posts={posts}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function ProductDetailPage({ params }: PageProps) {
|
||||
</div>
|
||||
) : product ? (
|
||||
<ProductDetailCard
|
||||
item={product}
|
||||
product={product}
|
||||
onBackClick={handleBackClick}
|
||||
/>
|
||||
) : (
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function ShopPage() {
|
||||
</div>
|
||||
) : (
|
||||
<ProductCatalog
|
||||
items={products}
|
||||
products={products}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user