feat:1.Added logo 2.changed color palet

This commit is contained in:
2025-02-22 16:47:37 +05:30
parent d9c299a58f
commit 8ad01a5c50
13 changed files with 226 additions and 390 deletions
+7 -4
View File
@@ -1,10 +1,12 @@
const TotalSpent = () => {
return (
<>
<div className="h-full">
<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')` }}
className="h-full 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("/home/atharva/git repo/Frontend/public/images/plant-1573.svg")`,
}}
>
<h5 className="mb-2 text-4xl font-bold tracking-tight text-gray-900 dark:text-white">
100,000
@@ -13,7 +15,8 @@ const TotalSpent = () => {
This is the total cost which you spent on this farm
</p>
</a>
</>
</div>
);
};
export default TotalSpent;