fix: add login/logout buttons

This commit is contained in:
Christel Westerberg
2024-05-29 17:20:27 +02:00
parent 0ec6d58d6a
commit 37843af507
9 changed files with 191 additions and 12 deletions

View File

@@ -2,9 +2,9 @@ import "@scandic-hotels/design-system/current/style.css"
import styles from "./bookingButton.module.css"
export default function BookingButton() {
export default function BookingButton({ href }: { href: string }) {
return (
<a className={styles.button} href="/">
<a className={styles.button} href={href}>
Book
</a>
)