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
This commit is contained in:
@@ -11,20 +11,20 @@ function Links({ matchedCity }) {
|
||||
<ContentContact
|
||||
url="tel:900300400"
|
||||
label="تلفن تماس: "
|
||||
text={matchedCity.contactPhone}
|
||||
text={matchedCity?.contactPhone || "900300400"}
|
||||
>
|
||||
<CallC />
|
||||
</ContentContact>
|
||||
<ContentContact
|
||||
url="https://wa.me/09124568794"
|
||||
text={matchedCity.socialMedia.whatsapp}
|
||||
text={matchedCity?.socialMedia?.whatsapp || "09124568794"}
|
||||
label="واتساپ: "
|
||||
>
|
||||
<WhatsappC />
|
||||
</ContentContact>
|
||||
<ContentContact
|
||||
url="mailto:batome@gmail.com"
|
||||
text={matchedCity.email}
|
||||
text={matchedCity?.email || "info@nobat724.com"}
|
||||
label="ایمیل: "
|
||||
>
|
||||
<EmailC />
|
||||
|
||||
Reference in New Issue
Block a user