/* eslint-disable @next/next/no-img-element */ import { currentAboutLinks, currentSponsoringLinks, currentWifiLinks, } from "@/constants/current/links" import Desktop from "./LanguageSwitcher/Desktop" import Mobile from "./LanguageSwitcher/Mobile" import type { LanguageSwitcherLink } from "@/types/components/current/languageSwitcher" import type { HeaderProps } from "@/types/components/current/header" const paths: Record = { "/customer-service/frequently-asked-questions/using-the-website": currentAboutLinks, "/explore-scandic/wifi": currentWifiLinks, "/sponsoring": currentSponsoringLinks, } const currentLanguage = "English" export default function EnHeader({ pathname }: HeaderProps) { const links = paths?.[pathname] ?? null return (
You are offline, some content may be out of date.
Back to scandichotels.com
) }