mobile header

This commit is contained in:
2024-04-17 13:30:23 +05:00
parent 3fff036486
commit ecba8be306
12 changed files with 186 additions and 56 deletions
@@ -0,0 +1,17 @@
import Auth from "../Auth";
import Logo from "../Logo";
import Navbar from "../Navbar";
import Location from "../Location";
const DesktopHeader = () => (
<header className="bg-white w-full text-white sm:grid grid-cols-6 text-sm">
<div className="flex gap-4 col-span-2">
<Logo />
<Location />
</div>
<Navbar />
<Auth />
</header>
);
export default DesktopHeader;