24 lines
867 B
JavaScript
24 lines
867 B
JavaScript
import { Button } from "@mui/material";
|
|
import LocationD from "../icons/LocationD";
|
|
import SearchBar from "./search";
|
|
import ListDoctors from "./ListDoctors";
|
|
|
|
function DoctorsPage() {
|
|
return (
|
|
<div className="pt-[120px] padding-responsive">
|
|
<div className="flex justify-center 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 items-center justify-center gap-[32px]">
|
|
<SearchBar />
|
|
<Button>تست</Button>
|
|
</div>
|
|
</div>
|
|
<ListDoctors />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default DoctorsPage |