page about us & page contact us and responsive

This commit is contained in:
Ehsan
2024-08-16 20:41:53 +03:30
parent fd3b82143b
commit d3f967ca67
22 changed files with 297 additions and 4 deletions
+18
View File
@@ -0,0 +1,18 @@
function ContentContact({ text, children, 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>
)
}
export default ContentContact