diff --git a/apps/website/components/stats.tsx b/apps/website/components/stats.tsx index 7cffd56..6b38113 100644 --- a/apps/website/components/stats.tsx +++ b/apps/website/components/stats.tsx @@ -3,6 +3,13 @@ import React from "react"; import { useId } from "react"; import NumberTicker from "./ui/number-ticker"; +const statsValues = { + githubStars: 10000, + dockerDownloads: 900000, + contributors: 85, + sponsors: 38, +}; + export function StatsSection() { return (
@@ -41,8 +48,7 @@ export function StatsSection() { const grid = [ { title: "GitHub Stars", - description: - "With over 10.0k stars on GitHub, Dokploy is trusted by developers worldwide. Explore our repositories and join our community!", + description: `With over ${(statsValues.githubStars / 1000).toFixed(1)}k stars on GitHub, Dokploy is trusted by developers worldwide. Explore our repositories and join our community!`, icon: (

- + + +

), }, { title: "DockerHub Downloads", - description: - "Downloaded over 700,000 times, Dokploy has become a go-to solution for seamless deployments. Discover our presence on DockerHub.", + description: `Downloaded over ${(statsValues.dockerDownloads / 1000).toFixed(0)}k times, Dokploy has become a go-to solution for seamless deployments. Discover our presence on DockerHub.`, icon: ( - + + +

), }, { title: "Community Contributors", - description: - "Thanks to a growing base of over 65 contributors, Dokploy continues to thrive with valuable contributions from developers around the world.", + description: `Thanks to a growing base of over ${statsValues.contributors} contributors, Dokploy continues to thrive with valuable contributions from developers around the world.`, icon: , component: (

- + + +

), }, { title: "Sponsors", - description: - "More than 35 companies/individuals have sponsored Dokploy, ensuring a steady flow of support and resources. Join our community!", + description: `More than ${statsValues.sponsors} companies/individuals have sponsored Dokploy, ensuring a steady flow of support and resources. Join our community!`, icon: , component: (

- + + +

), },