import { ArrowLeft } from "react-feather" import { overview as profileOverview } from "@scandic-hotels/common/constants/routes/myPages" import Image from "@scandic-hotels/design-system/Image" import Link from "@scandic-hotels/design-system/Link" import { getIntl } from "@/i18n" import background from "@/public/_static/img/partner/sas/sas_x_scandic_airplane_window_background.jpg" import styles from "./layout.module.css" import type { PropsWithChildren } from "react" import type { LangParams, LayoutArgs } from "@/types/params" export default async function SasXScandicLayout( props: PropsWithChildren> ) { const params = await props.params const { children } = props const intl = await getIntl() return (
{/* TODO should this link to my-pages sas page? */} {intl.formatMessage({ id: "header.backToScandicHotelsCom", defaultMessage: "Back to scandichotels.com", })} {intl.formatMessage({ id: "common.back", defaultMessage: "Back", })}
{children}
) } async function MainMenuLogo() { const intl = await getIntl() return ( ) } function Logo({ alt }: { alt: string }) { return ( {alt} ) }