diff --git a/src/app/page.tsx b/src/app/page.tsx
index 96f8667..d208833 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -6,22 +6,22 @@ export default function Home() {
return (
);
diff --git a/src/components/StatsCard.tsx b/src/components/StatsCard.tsx
index 20d0997..d4db323 100644
--- a/src/components/StatsCard.tsx
+++ b/src/components/StatsCard.tsx
@@ -1,4 +1,4 @@
-import React from 'react';
+import React from "react";
import { Icon } from "@iconify/react/dist/iconify.js";
interface StatsCardProps {
@@ -11,29 +11,36 @@ interface StatsCardProps {
const StatsCard = ({ heading, value, icon, date }: StatsCardProps) => {
return (
-
+
-
);
};
export default StatsCard;
-
-