head page specialties

This commit is contained in:
Ehsan
2024-07-09 19:27:38 +03:30
parent 3480e9997a
commit c6840d8b05
6 changed files with 73 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
import SearchBar from "./SearchBar"
function Head() {
return (
<div className="pt-[195px] padding-responsive bg-[#F6F7F9] pb-[85px] flex flex-col items-center gap-[25px]">
<p className="text-[#3B3B3B] text-[24px] text-center font-bold">تخصص مورد نظر شما چیست؟</p>
<p className="text-[#3B3B3B] text-[16px] text-center font-normal">تخصص مورد نظرتان را جستجو کرده و یا از لیست زیر انتخاب نمایید:</p>
<SearchBar />
</div>
)
}
export default Head