Files
baki-ledger/frontend/app/components/Navbar.tsx
2026-02-19 15:05:32 +05:30

12 lines
295 B
TypeScript

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;