create component elements & add page clinics && add url clinic

This commit is contained in:
Ehsan
2024-08-08 22:00:09 +03:30
parent 57d33a532c
commit 01de360360
13 changed files with 440 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import HeadPageList from "@/app/component/head";
import List from "./list";
import SearchBar from "./head/SearchBar";
function ClinicsPage() {
return (
<div className="">
<HeadPageList
title='لیست کلینیک ها و درمانگاه های تخصصی'
detail='در قسمت زیر می توانید کلینیک مورد نظر خود را جستجو نمایید'
>
<SearchBar />
</HeadPageList>
<List />
</div>
)
}
export default ClinicsPage