24 lines
950 B
JavaScript
24 lines
950 B
JavaScript
import LocationD from "../icons/LocationD";
|
|
import ListDoctors from "./listDoctors";
|
|
import SearchBar from "./search";
|
|
import SortList from "./sortlist";
|
|
|
|
function DoctorsPage() {
|
|
return (
|
|
<div className="pt-[120px] padding-responsive">
|
|
<div className="flex justify-center gap-[16px] sm:gap-[19px] md:gap-[22px] lg:gap-[24px] flex-col items-center mt-[90px]">
|
|
<div className="flex items-center justify-start gap-2 w-full">
|
|
<LocationD />
|
|
<p className="text-[#525252] text-[16px] font-semibold">خوزستان / اهواز</p>
|
|
</div>
|
|
<div className="flex flex-col lg:flex-row items-start lg:items-center justify-center gap-[24px] lg:gap-[32px] w-full">
|
|
<SearchBar />
|
|
<SortList />
|
|
</div>
|
|
</div>
|
|
<ListDoctors />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default DoctorsPage |