/* 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 = { "/kundservice/fragor-och-svar/om-scandics-webbplats": currentAboutLinks, "/utforska-scandic/wi-fi": currentWifiLinks, "/vi-sponsrar": currentSponsoringLinks, } const currentLanguage = "Svenska" export default function SvHeader({ pathname }: HeaderProps) { const links = paths?.[pathname] ?? null return (
Du är offline. Sidan kan visa gammalt innehåll.
Tillbaka till scandichotels.se
); }