check lighthous

This commit is contained in:
hamed
2026-06-05 21:05:07 +03:30
parent cf703f131a
commit 3c9013ff0c
10 changed files with 43 additions and 88 deletions
+2 -1
View File
@@ -57,11 +57,12 @@ function ListDoctors({
<div className="mt-[24px] sm:mt-[37px] md:mt-[50px] lg:mt-[64px]">
{doctors && doctors.length ? (
<ul className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-[24px]">
{doctors?.map((doctor) => (
{doctors?.map((doctor, idx) => (
<ItemDoctor
key={doctor.id}
doctor={doctor}
loading={loading}
priority={idx < 3}
setDoctors={setDoctors}
/>
))}