Update src/app/page.tsx

This commit is contained in:
2026-03-07 12:02:38 +00:00
parent 2fda8df806
commit 80381ec25e

View File

@@ -41,15 +41,15 @@ const dashboardData = {
],
stats: [
{
title: "Rating", values: ["4.0", "4.0", "4.0"],
title: "Rating", values: [4.0, 4.0, 4.0],
description: "⭐ Google Rating"
},
{
title: "Reviews", values: ["4,800", "4,800", "4,800"],
title: "Reviews", values: [4800, 4800, 4800],
description: "Happy Customers"
},
{
title: "Price Range", values: ["₹200", "₹300", "₹400"],
title: "Price Range", values: [200, 300, 400],
valueSuffix: "per person", description: "Budget Friendly"
},
] as const,
@@ -239,15 +239,15 @@ export default function LandingPage() {
],
stats: [
{
title: "Rating", values: ["4.0", "4.0", "4.0"],
title: "Rating", values: [4.0, 4.0, 4.0],
description: "⭐ Google Rating"
},
{
title: "Reviews", values: ["4,800", "4,800", "4,800"],
title: "Reviews", values: [4800, 4800, 4800],
description: "Happy Customers"
},
{
title: "Price Range", values: ["₹200", "₹300", "₹400"],
title: "Price Range", values: [200, 300, 400],
valueSuffix: "per person", description: "Budget Friendly"
},
],