feat:Added total spent card and Removed some typos

This commit is contained in:
2025-02-22 16:01:56 +05:30
parent f7cb1af2c4
commit d9c299a58f
7 changed files with 93 additions and 61 deletions
+19
View File
@@ -0,0 +1,19 @@
const TotalSpent = () => {
return (
<>
<a
href="#"
className="block max-w-sm p-6 bg-no-repeat bg-center bg-cover border border-gray-200 rounded-lg shadow-sm hover:bg-gray-100 dark:bg-gray-800 dark:border-gray-700 dark:hover:bg-gray-700"
style={{ backgroundImage: `url('./images/plant-1573.png')` }}
>
<h5 className="mb-2 text-4xl font-bold tracking-tight text-gray-900 dark:text-white">
100,000
</h5>
<p className="font-normal text-gray-700 dark:text-gray-400">
This is the total cost which you spent on this farm
</p>
</a>
</>
);
};
export default TotalSpent;