show section send msg just for nobat724 domain

This commit is contained in:
Ehsan
2025-05-12 21:24:48 +03:30
parent 1fa42a3700
commit 555bbddb53
6 changed files with 64 additions and 46 deletions
+28
View File
@@ -0,0 +1,28 @@
import CallC from "../../icons/CallC";
import EmailC from "../../icons/EmailC";
import WhatsappC from "../../icons/WhatsappC";
import ContentContact from "../ContentContact";
function Links() {
return (
<ul className="flex flex-col mt-[68px] justify-start items-start gap-[32px]">
<ContentContact url="tel:900300400" text="تلفن تماس: ۰۲۱۳۶۳۵۴۵۹۸">
<CallC />
</ContentContact>
<ContentContact
url="https://wa.me/09124568794"
text="واتساپ: ۰۹۱۲۴۵۶۸۷۹۴"
>
<WhatsappC />
</ContentContact>
<ContentContact
url="mailto:batome@gmail.com"
text="ایمیل: batome@gmail.com"
>
<EmailC />
</ContentContact>
</ul>
)
}
export default Links