finish design doctor item & change basic responsive style

This commit is contained in:
Ehsan
2024-07-08 21:04:47 +03:30
parent cbcfa2029b
commit 3e0714dcff
16 changed files with 211 additions and 39 deletions
+12 -10
View File
@@ -7,17 +7,19 @@ import FrequentSearches from "./FrequentSearches";
function HomePage() {
return (
<div className="bg-banner-home padding-responsive pt-[120px] min-h-screen !bg-center !bg-no-repeat !bg-cover flex items-center justify-center flex-col gap-[64px]">
<div>
<p className="text-[#D15B56] text-center font-kalame text-[32px] font-bold">نوبت ۷۲۴</p>
<p className="text-[#525252] text-center mt-2.5 font-kalame text-[36px] font-bold flex items-center gap-3">
<BText />
میتونی آنلاین نوبت بگیری!
<AText />
</p>
<div className="bg-banner-home !bg-center !bg-no-repeat !bg-cover">
<div className="padding-responsive min-h-screen pt-[120px] flex items-center justify-center flex-col gap-[64px]">
<div>
<p className="text-[#D15B56] text-center font-kalame text-[32px] font-bold">نوبت ۷۲۴</p>
<p className="text-[#525252] text-center mt-2.5 font-kalame text-[36px] font-bold flex items-center gap-3">
<BText />
میتونی آنلاین نوبت بگیری!
<AText />
</p>
</div>
<SearchBar />
<FrequentSearches />
</div>
<SearchBar />
<FrequentSearches />
</div>
)
}