import { ArrowLeft } from "react-feather" import { overview as profileOverview } from "@/constants/routes/myPages" import Image from "@/components/Image" import Link from "@/components/TempDesignSystem/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({ defaultMessage: "Back to scandichotels.com", })} {intl.formatMessage({ defaultMessage: "Back", })}
{children}
) } async function MainMenuLogo() { const intl = await getIntl() return ( ) } function Logo({ alt }: { alt: string }) { return ( {alt} ) }