"use client"; import Title from "../title"; import { FaPhoneAlt, FaTelegram } from "react-icons/fa"; import { BiTargetLock } from "react-icons/bi"; import GoogleMap from "../google.map"; export default function Map() { return (
{/* map */}
{/* contact information */}
</div> <div className="flex items-center justify-start gap-2 text-gray-500 text-[20px] "> <span className="text-secondary"> <FaPhoneAlt /> </span> +998 33 252-00-00 </div> <div className="flex items-center justify-start gap-2 text-gray-500 text-[20px] "> <span className="text-secondary"> <FaTelegram /> </span> spes-texnika </div> <div className="flex items-center justify-start gap-2 text-gray-500 text-[20px] "> <span className="text-secondary"> <BiTargetLock /> </span> Yakkasaroy , Toshkent </div> </div> </div> ); }