feat: refactor of my stay

This commit is contained in:
Simon Emanuelsson
2025-04-25 14:08:14 +02:00
committed by Simon.Emanuelsson
parent b5deb84b33
commit ec087a3d15
208 changed files with 5458 additions and 4569 deletions

View File

@@ -0,0 +1,34 @@
"use client"
import Link from "next/link"
import { useIntl } from "react-intl"
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
import { Typography } from "@scandic-hotels/design-system/Typography"
import { useMyStayStore } from "@/stores/my-stay"
import ManageStay from "./ManageStay"
import styles from "./notCancelled.module.css"
export default function NotCancelled() {
const intl = useIntl()
const location = useMyStayStore((state) => state.hotel.location)
const directionsUrl = `https://www.google.com/maps/dir/?api=1&destination=${location.latitude},${location.longitude}`
return (
<>
<ManageStay />
<Link className={styles.link} href={directionsUrl} target="_blank">
<Typography variant="Body/Supporting text (caption)/smBold">
<span>
{intl.formatMessage({
defaultMessage: "Find us",
})}
</span>
</Typography>
<MaterialIcon color="Icon/Interactive/Default" icon="location_on" />
</Link>
</>
)
}