diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx
index ad649b9..bcadefe 100644
--- a/src/app/blog/page.tsx
+++ b/src/app/blog/page.tsx
@@ -45,9 +45,7 @@ export default function BlogPage() {
) : (
)}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index d5ba46e..7697a2b 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -45,7 +45,7 @@ export default function Home() {
tag="Premium Specialty Coffee"
tagIcon={Coffee}
tagAnimation="slide-up"
- background={{ variant: "noise" }}
+ background={{ variant: "plain" }}
buttons={[
{ text: "Explore Our Menu", href: "#features" },
{ text: "Visit Us Today", href: "#contact" }
@@ -112,6 +112,7 @@ export default function Home() {
tag="Our Impact"
tagAnimation="slide-up"
useInvertedBackground={false}
+ metricsAnimation="slide-up"
metrics={[
{
id: "beans-roasted", value: "500+", description: "Tons of beans roasted annually"
@@ -154,9 +155,9 @@ export default function Home() {
}
]}
kpiItems={[
- { id: "rating", value: "4.9/5", description: "Average Rating" },
- { id: "repeat", value: "87%", description: "Repeat Customers" },
- { id: "satisfaction", value: "98%", description: "Satisfaction Rate" }
+ { value: "4.9/5", description: "Average Rating" },
+ { value: "87%", description: "Repeat Customers" },
+ { value: "98%", description: "Satisfaction Rate" }
]}
/>
@@ -197,7 +198,7 @@ export default function Home() {
{ text: "Email Us", href: "mailto:hello@brewcraft.com" }
]}
buttonAnimation="slide-up"
- background={{ variant: "noise" }}
+ background={{ variant: "plain" }}
useInvertedBackground={true}
/>
diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx
index c6c393b..d63b14f 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 d218d24..117a602 100644
--- a/src/app/shop/page.tsx
+++ b/src/app/shop/page.tsx
@@ -47,9 +47,7 @@ export default function ShopPage() {
) : (
)}