diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index bcadefe..d3c127f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -45,7 +45,7 @@ export default function BlogPage() { ) : ( )} diff --git a/src/app/page.tsx b/src/app/page.tsx index 7697a2b..3a7cfca 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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%" } ]} /> diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index d63b14f..c6c393b 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -58,7 +58,7 @@ export default function ProductDetailPage({ params }: PageProps) { ) : product ? ( ) : ( diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 117a602..9847c69 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -47,7 +47,7 @@ export default function ShopPage() { ) : ( )}