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
+11 -1
View File
@@ -1,6 +1,7 @@
import React from "react";
import Piechart from "../../components/Piechart";
import TotalSpent from "../../components/TotalSpent";
import Logs from "../../components/Logs";
const Dashboard = () => {
return (
@@ -197,11 +198,20 @@ const Dashboard = () => {
</div>
</div>
</div> */}
<div className="mb-4 flex justify-end space-x-4">
<button
type="button"
class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 mb-2 dark:bg-blue-600 dark:hover:bg-blue-700 focus:outline-none dark:focus:ring-blue-800 float-right"
>
New Farm
</button>
</div>
<div className="mb-4 flex ">
<div className="mb-4 flex space-x-4">
<Piechart />
<TotalSpent />
</div>
<Logs />
</div>
</>
);