diff --git a/components/shared/Statistics.tsx b/components/shared/Statistics.tsx index 5a5e26b..b9d9877 100644 --- a/components/shared/Statistics.tsx +++ b/components/shared/Statistics.tsx @@ -3,18 +3,16 @@ import NumberTicker from "../widgets/num-tick"; const Statistics = () => { return ( -
-
- {stats.map(({ title, count }) => ( -
-

- + -

-

{title}

-
- ))} -
-
+
+ {stats.map(({ title, count }) => ( +
+

+ + +

+

{title}

+
+ ))} +
); };