- Bumped versions for several packages including: - @emotion/styled from ^11.14.0 to ^11.14.1 - @maptiler/sdk from ^2.4.0 to ^2.5.1 - @mui/icons-material from ^7.1.0 to ^7.3.6 - @mui/material from ^7.1.0 to ^7.3.6 - @mui/styled-engine-sc from ^6.0.0-alpha.18 to ^6.4.9 - @mui/x-charts from ^7.16.0 to ^7.29.1 - @mui/x-date-pickers from ^7.17.0 to ^7.29.4 - @next/third-parties from ^15.1.0 to ^15.5.7 - axios from ^1.7.7 to ^1.13.2 - dayjs from ^1.11.13 to ^1.11.19 - jspdf from ^3.0.1 to ^3.0.4 - next from ^14.2.20 to ^15.5.7 - next-themes from ^0.3.0 to ^0.4.6 - npm from ^10.8.2 to ^10.9.4 - react from ^18.0.0 to ^18.3.1 - react-dom from ^18 to ^18.3.1 - react-easy-crop from ^5.1.0 to ^5.5.6 - react-toastify from ^10.0.6 to ^11.0.5 - sharp from ^0.34.1 to ^0.34.5 - styled-components from ^6.1.11 to ^6.1.19 - stylis from ^4.3.4 to ^4.3.6 - swiper from ^11.1.9 to ^11.2.10 - postcss from ^8 to ^8.5.6 - prettier from ^3.5.3 to ^3.7.4 - tailwindcss from ^3.4.1 to ^3.4.18
79 lines
3.0 KiB
JavaScript
79 lines
3.0 KiB
JavaScript
import CircularLoading from "@/app/component/loading/Circular";
|
|
import CustomLoading from "@/app/component/loading/Custom";
|
|
import TextLoading from "@/app/component/loading/Text";
|
|
import LikeDI from "@/components/icons/LikeDI";
|
|
import StarDI from "@/components/icons/StarDI";
|
|
import TickCircle from "@/components/icons/TickCircle";
|
|
import Image from "next/image";
|
|
|
|
function Title({ doctor }) {
|
|
return (
|
|
<div className="flex flex-col lg:flex-row items-center justify-start gap-[8px] lg:gap-[32px]">
|
|
<CircularLoading width={100} height={100}>
|
|
<Image
|
|
className="
|
|
object-contain rounded-full
|
|
w-[40px] sm:w-[81px] md:w-[123px] lg:w-[164px]
|
|
h-[40px] sm:h-[81px] md:h-[123px] lg:h-[164px]
|
|
"
|
|
src={doctor?.img?.[0]?.url || "/assets/images/user.png"}
|
|
alt="img-doctor"
|
|
height={164}
|
|
width={164}
|
|
/>
|
|
</CircularLoading>
|
|
<div className="flex flex-col items-center lg:items-start gap-[8px] lg:gap-[16px]">
|
|
<TextLoading width={90} height={20}>
|
|
<h1 className="text-[#3B3B3B] text-[14px] sm:text-[16px] md:text-[18px] lg:text-[20px] font-bold">
|
|
{doctor?.name}
|
|
</h1>
|
|
</TextLoading>
|
|
<TextLoading width={100} height={20}>
|
|
<h3 className="text-[#525252] text-[14px] md:text-[16px] font-medium">
|
|
تخصص:
|
|
{doctor?.specialties?.map(
|
|
(item, idx) =>
|
|
`${item.name} ${doctor.specialties.length === idx + 1 ? "" : "|"} `
|
|
)}
|
|
</h3>
|
|
</TextLoading>
|
|
<div className="flex items-center justify-start gap-11">
|
|
<TextLoading width={60} height={20}>
|
|
<p className="text-[#525252] text-[16px] font-medium">
|
|
{doctor?.experience} سال تجربه
|
|
</p>
|
|
</TextLoading>
|
|
<div className="flex items-center gap-1">
|
|
<div className="hidden lg:flex">
|
|
<TickCircle />
|
|
</div>
|
|
<TextLoading width={120} height={20}>
|
|
<p className="text-[#525252] text-[12px] md:text-[14px] lg:text-[16px] font-medium">
|
|
کد نظام پزشکی: {doctor?.medical_system_code}
|
|
</p>
|
|
</TextLoading>
|
|
</div>
|
|
</div>
|
|
<CustomLoading width={160} height={25}>
|
|
<div className="flex items-center justify-start gap-2">
|
|
<div className="flex p-1 gap-0.5 items-start justify-center">
|
|
<StarDI />
|
|
<p className="text-[#616161] text-[12px] md:text-[14px] font-normal">
|
|
امتیاز: {doctor?.point}
|
|
</p>
|
|
</div>
|
|
<div className="flex p-1 items-start gap-0.5">
|
|
<LikeDI />
|
|
<p className="text-[#616161] text-[12px] md:text-[14px] font-normal">
|
|
{doctor?.satisfaction}% رضایت کاربران
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</CustomLoading>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Title;
|