change data clinics & page clinics tab about & contact & doctors

This commit is contained in:
Ehsan
2024-08-13 01:23:44 +03:30
parent f5ce58ef90
commit 5568a989fe
27 changed files with 368 additions and 92 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
import doctors from '@/data/doctors.json'
import ItemDoctor from './ItemDoctor';
import Pagination from '@/app/component/Pagination';
import ItemDoctor from '@/app/component/ItemDoctor';
function ListDoctors() {
return (
<div>
<>
<ul className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 mt-[64px] gap-[24px]">
{doctors.map(doctor => (
<ItemDoctor
@@ -16,7 +16,7 @@ function ListDoctors() {
<div className='mt-[56px] flex justify-center'>
<Pagination />
</div>
</div>
</>
)
}