Files
spestexnika/components/nav_foot/header.tsx
nabijonovdavronbek619@gmail.com 44ab51d914 responsive bug fixing2
2025-11-04 16:34:55 +05:00

35 lines
994 B
TypeScript

import { FaLocationDot } from "react-icons/fa6";
export default function Header() {
return (
<div
dir="ltr"
className="bg-primary py-3 flex items-center sm:justify-around justify-center px-4"
>
<div className="max-w-[1500px] w-full mx-auto flex items-center sm:justify-between justify-center gap-4 flex-wrap ">
<div className="flex justify-center items-center text-white max-w-[250px] w-full ">
Uzbekistan , Tashkent
<span className="text-[#f2a01c] text-[20px]">
<FaLocationDot />
</span>
</div>
<div>
<a
href="tel:+998332520000"
className="hover:cursor-pointer text-white flex flex-wrap justify-center items-center max-w-[250px] w-full "
>
+998 33 232 00 00
{/* <span className="text-[#f2a01c] text-[20px]">
<FaLocationDot />
</span> */}
</a>
</div>
</div>
</div>
);
}