add prettier formatter to all file

This commit is contained in:
Ehsan
2024-09-25 11:03:44 +03:30
parent fa38ee2b21
commit eda896e917
410 changed files with 47636 additions and 43842 deletions
+15 -14
View File
@@ -1,18 +1,19 @@
function ContentContact({ text, children, url }) {
const openURL = (url) => window.open(url);
const openURL = url => window.open(url);
return (
<li
className="flex cursor-pointer items-center justify-start gap-4"
onClick={() => openURL(url)}
>
<div className="p-2 rounded-[8px] bg-[#EBFAFA] grid place-items-center">
{children}
</div>
<p className="text-[#FFF] text-[14px] md:text-[18px] sm:text-[16px] lg:text-[20px] font-normal">{text}</p>
</li>
)
return (
<li
className="flex cursor-pointer items-center justify-start gap-4"
onClick={() => openURL(url)}
>
<div className="p-2 rounded-[8px] bg-[#EBFAFA] grid place-items-center">
{children}
</div>
<p className="text-[#FFF] text-[14px] md:text-[18px] sm:text-[16px] lg:text-[20px] font-normal">
{text}
</p>
</li>
);
}
export default ContentContact
export default ContentContact;