diff --git a/src/app/page.tsx b/src/app/page.tsx index c3f74c9..7f511b7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" }, ],