-
- The complete e-commerce management solution for modern businesses.
-
+
© {new Date().getFullYear()} Ember. All rights reserved.
diff --git a/components/animated-stats-section.tsx b/components/animated-stats-section.tsx
index 68c3c12..c7eafdd 100644
--- a/components/animated-stats-section.tsx
+++ b/components/animated-stats-section.tsx
@@ -8,7 +8,7 @@ const formatCurrency = (value: number) => {
return new Intl.NumberFormat('en-GB', {
style: 'currency',
currency: 'GBP',
- minimumFractionDigits: 0,
+ minimumFractionDigits: 2,
}).format(value);
};
@@ -18,62 +18,65 @@ interface AnimatedStatsProps {
export function AnimatedStatsSection({ stats }: AnimatedStatsProps) {
return (
-
-
-
-
+
+
+
+
+
+
+
+ Completed Orders
+
+
+ Successfully fulfilled orders across our platform
+
-
-
- Completed Orders
-
-
- Successfully fulfilled orders across our platform
-
-
-
-
+
+
+
+
+
+
+ Registered Vendors
+
+
+ Active sellers offering products on our marketplace
+
-
-
- Registered Vendors
-
-
- Active sellers offering products on our marketplace
-
-
-
-
+
+
+
+
+
+
+ Transaction Volume
+
+
+ Total value of successful transactions processed
+
-
-
- Transaction Volume
-
-
- Total value of successful transactions processed
-
);