"use client" import { useIntl } from "react-intl" import { customerService } from "@scandic-hotels/common/constants/routes/customerService" import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" import Link from "@scandic-hotels/design-system/Link" import { Typography } from "@scandic-hotels/design-system/Typography" import { LanguageSwitcher } from "@/components/LanguageSwitcher" import useLang from "@/hooks/useLang" import { routeToScandicWeb } from "@/util" import { UserMenu } from "../UserMenu" import styles from "./navigation-menu.module.css" export function NavigationMenu({ isMobile = false }: { isMobile?: boolean }) { const intl = useIntl() const lang = useLang() return (