This commit is contained in:
2024-07-16 21:55:10 +05:00
parent 775dfea0f2
commit 871f2d961e
25 changed files with 1751 additions and 121 deletions
@@ -2,15 +2,22 @@ import Auth from "../Auth/Auth";
import Logo from "../../Logo";
import Navbar from "../Navbar/Navbar";
import Location from "../Location";
import DownloadIcon from "../../icons/DownloadIcon";
const DesktopHeader = () => (
<header className="bg-white w-full text-white sm:grid grid-cols-6 fixed left-0 top-0 z-[99999900] font-usual text-m select-none">
<header className="bg-white fixed left-0 top-0 w-full z-[99999900] font-usual text-m select-none flex justify-between">
<div className="flex gap-4 col-span-2">
<Logo />
<Location />
</div>
<Navbar />
<Auth isAuth={false} />
<div className="flex gap-5">
<button className="flex items-center gap-1 text-[#73787C]">
<DownloadIcon />
<p>Brochure</p>
</button>
<Auth isAuth={false} />
</div>
</header>
);