handle limit page dashboard & change header profile user & get data from api in page clinics & clinic item and doctor item

This commit is contained in:
Ehsan
2025-06-01 01:08:25 +03:30
parent 80c74361eb
commit e292176a61
45 changed files with 223 additions and 258 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
import Content from "./Content";
function Header({ matchedCity, name }) {
function Header({ matchedCity, name, logged }) {
return (
<div className="bg-[#FFF] rounded-lg w-full mx-auto">
<Content matchedCity={matchedCity} name={name} />
<Content matchedCity={matchedCity} name={name} logged={logged} />
</div>
);
}