Files
IRTH/client/src/components/header/Header/DesktopHeader.tsx
T
2024-07-18 14:38:33 +05:00

20 lines
516 B
TypeScript

import Auth from "../Auth/Auth";
import Logo from "../../Logo";
import Navbar from "../Navbar/Navbar";
import Location from "../Location";
const DesktopHeader = () => (
<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 />
<div className="flex gap-5">
<Auth isAuth={false} />
</div>
</header>
);
export default DesktopHeader;