responsive page about-us & contact-us & item clinic

This commit is contained in:
Ehsan
2024-08-21 21:45:45 +03:30
parent dfd7360be5
commit c62fb78f8c
14 changed files with 98 additions and 54 deletions
+10
View File
@@ -0,0 +1,10 @@
function FieldLabel({ children, title }) {
return (
<div className="flex flex-col items-start justify-start w-full gap-[12px] md:gap-[14px] lg:gap-[16px]">
<p className="text-[#525252] text-[14px] font-medium">{title}</p>
{children}
</div>
)
}
export default FieldLabel