feat:Added glass navbar and Dashboard components

This commit is contained in:
2025-02-22 18:48:07 +05:30
parent 439dbe51b6
commit c41d788328
15 changed files with 430 additions and 419 deletions
+8 -7
View File
@@ -3,8 +3,8 @@ import { Link } from "react-router-dom";
const Logs = () => {
return (
<>
<div class="relative overflow-x-auto">
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400">
<div class="relative overflow-y-hidden">
<table class="w-full text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400 border">
<thead class="text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
<tr>
<th scope="col" class="px-6 py-3">
@@ -55,11 +55,12 @@ const Logs = () => {
<td class="px-6 py-4">Accessories</td>
<td class="px-6 py-4">$99</td>
</tr>
</tbody>
<Link to="/logs" className="text-[#2323FF]">
View all Logs
</Link>
</table>
</tbody>{" "}
</table>{" "}
<Link to="/logs" className="text-[#2323FF] pl-5">
<hr />
View all Logs
</Link>
</div>
</>
);