import * as routes from "@scandic-hotels/common/constants/routes/myPages" import type { Lang } from "@scandic-hotels/common/constants/language" import type { MyPagesLink } from "./MyPagesLink" export async function getSecondaryLinks({ lang, }: { lang: Lang }): Promise { const menuItems: MyPagesLink[] = [ { type: "link", key: "scandicFriends", href: routes.scandicFriends[lang], }, { type: "link", key: "profile", href: routes.profile[lang], }, ] return menuItems }