Files
nobat724_front/components/contactUs/call/Links.js
T
hamed 6f0c29d700 chore: update dependencies and add .dockerignore file
- Updated MUI packages to version 5.x and x-charts/x-date-pickers to 7.x
- Downgraded React and React-DOM to version 18.3.1
- Added .dockerignore to exclude unnecessary files from Docker context
2025-12-10 14:06:19 +03:30

37 lines
961 B
JavaScript

"use client";
import CallC from "../../icons/CallC";
import EmailC from "../../icons/EmailC";
import WhatsappC from "../../icons/WhatsappC";
import ContentContact from "../ContentContact";
function Links({ matchedCity }) {
return (
<ul className="flex flex-col mt-[68px] justify-start items-start gap-[32px]">
<ContentContact
url="tel:900300400"
label="تلفن تماس: "
text={matchedCity?.contactPhone || "900300400"}
>
<CallC />
</ContentContact>
<ContentContact
url="https://wa.me/09124568794"
text={matchedCity?.socialMedia?.whatsapp || "09124568794"}
label="واتساپ: "
>
<WhatsappC />
</ContentContact>
<ContentContact
url="mailto:batome@gmail.com"
text={matchedCity?.email || "info@nobat724.com"}
label="ایمیل: "
>
<EmailC />
</ContentContact>
</ul>
);
}
export default Links;