Update src/app/page.tsx

This commit is contained in:
2026-02-04 13:22:19 +00:00
parent e9c877c476
commit 1647235c60

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
@@ -62,15 +62,15 @@ export default function LandingPage() {
], ],
stats: [ stats: [
{ {
title: "Roasting Since", values: ["2015", "2016", "2017"], title: "Roasting Since", values: [2015, 2016, 2017],
description: "Years of excellence" description: "Years of excellence"
}, },
{ {
title: "Premium Blends", values: ["12", "18", "24"], title: "Premium Blends", values: [12, 18, 24],
description: "Available varieties" description: "Available varieties"
}, },
{ {
title: "Happy Customers", values: ["5000", "7500", "10000"], title: "Happy Customers", values: [5000, 7500, 10000],
description: "Served monthly" description: "Served monthly"
} }
], ],