Added Navbar

This commit is contained in:
2026-02-19 15:05:32 +05:30
commit 13ca4a144b
22 changed files with 12295 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const Navbar = () => {
return (
<div className="bg-red-100 grid grid-cols-3 px-8 py-4">
<div className="text-left">Logo Here</div>
<div className="text-center">Supplier || Customer</div>
<div className="text-right">Logout</div>
</div>
);
};
export default Navbar;