diff --git a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx index 33a564ae2..74f6ff9e6 100644 --- a/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx +++ b/apps/scandic-web/components/ContentType/HotelPage/SidePeeks/AboutTheHotel/ContactInformation/index.tsx @@ -11,6 +11,7 @@ import { getLang } from "@/i18n/serverContext" import styles from "./contactInformation.module.css" import type { ContactInformationProps } from "@/types/components/hotelPage/sidepeek/aboutTheHotel" +import { Country } from "@/types/enums/country" export default async function ContactInformation({ hotelAddress, @@ -65,6 +66,13 @@ export default async function ContactInformation({ {contact.phoneNumber} + {hotelAddress.country === Country.Finland ? ( + + {intl.formatMessage({ + id: "Price 0,16 €/min + local call charges", + })} + + ) : null}
diff --git a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx index 6d0ba8346..c30cfbffb 100644 --- a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx +++ b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/MeetingsSidebar.tsx @@ -1,5 +1,5 @@ import Link from "@/components/TempDesignSystem/Link" -import Body from "@/components/TempDesignSystem/Text/Body" +import Caption from "@/components/TempDesignSystem/Text/Caption" import Title from "@/components/TempDesignSystem/Text/Title" import { getIntl } from "@/i18n" @@ -29,11 +29,11 @@ export default async function MeetingsSidebar({
{phoneNumber} {country === Country.Finland ? ( - + {intl.formatMessage({ id: "Price 0,16 €/min + local call charges", })} - + ) : null} {email && ( diff --git a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx index 4a6797b4a..08b5f6110 100644 --- a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx +++ b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/ParkingSidebar.tsx @@ -1,10 +1,12 @@ import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" +import Caption from "@/components/TempDesignSystem/Text/Caption" import Title from "@/components/TempDesignSystem/Text/Title" import { getIntl } from "@/i18n" import styles from "./sidebar.module.css" +import { Country } from "@/types/enums/country" import type { Hotel } from "@/types/hotel" interface HotelSidebarProps { @@ -36,6 +38,13 @@ export default async function ParkingSidebar({ hotel }: HotelSidebarProps) { {hotel.contactInformation.phoneNumber} + {hotel.address.country === Country.Finland ? ( + + {intl.formatMessage({ + id: "Price 0,16 €/min + local call charges", + })} + + ) : null}
) diff --git a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar.tsx index ec37b3222..54e5410b8 100644 --- a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar.tsx +++ b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/RestaurantSidebar.tsx @@ -3,11 +3,13 @@ import OpeningHours from "@/components/OpeningHours" import Button from "@/components/TempDesignSystem/Button" import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" +import Caption from "@/components/TempDesignSystem/Text/Caption" import Title from "@/components/TempDesignSystem/Text/Title" import { getIntl } from "@/i18n" import styles from "./sidebar.module.css" +import { Country } from "@/types/enums/country" import type { Hotel, Restaurant } from "@/types/hotel" interface RestaurantSidebarProps { @@ -88,7 +90,16 @@ export default async function RestaurantSidebar({
{phoneNumber && ( - {phoneNumber} + <> + {phoneNumber} + {address.country === Country.Finland ? ( + + {intl.formatMessage({ + id: "Price 0,16 €/min + local call charges", + })} + + ) : null} + )} {email && ( diff --git a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx index 79eaca3c5..b26bcbe42 100644 --- a/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx +++ b/apps/scandic-web/components/ContentType/HotelSubpage/Sidebar/WellnessSidebar.tsx @@ -1,5 +1,6 @@ import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" +import Caption from "@/components/TempDesignSystem/Text/Caption" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import Title from "@/components/TempDesignSystem/Text/Title" import { getIntl } from "@/i18n" @@ -8,6 +9,7 @@ import { translateWellnessType } from "../../HotelPage/utils" import styles from "./sidebar.module.css" +import { Country } from "@/types/enums/country" import type { Hotel } from "@/types/hotel" interface WellnessSidebarProps { @@ -81,6 +83,13 @@ export default async function WellnessSidebar({ hotel }: WellnessSidebarProps) { {hotel.contactInformation.phoneNumber} + {hotel.address.country === Country.Finland ? ( + + {intl.formatMessage({ + id: "Price 0,16 €/min + local call charges", + })} + + ) : null}
)