/* 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 = { "/asiakaspalvelu/usein-kysytyt-kysymykset/tietoja-internetsivuista": currentAboutLinks, "/koe-scandic/maksuton-internetyhteys": currentSponsoringLinks, "/scandic-entdecken/wlan": currentWifiLinks, } const currentLanguage = "Suomi" export default function FiHeader({ pathname }: HeaderProps) { const links = paths?.[pathname] ?? null return (
Ei yhteyttä verkkoon. Osa sisällöstä saattaa olla vanhentunut.
Back to scandichotels.fi
); }