feat(SW-184): added main components for new header
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import { GiftIcon } from "@/components/Icons"
|
||||
import Link from "@/components/TempDesignSystem/Link"
|
||||
|
||||
import LanguageSwitcher from "./LanguageSwitcher"
|
||||
import Search from "./Search"
|
||||
|
||||
import styles from "./topMenu.module.css"
|
||||
|
||||
export default async function TopMenu() {
|
||||
return (
|
||||
<div className={styles.topMenu}>
|
||||
<div className={styles.content}>
|
||||
<Link variant="icon" color="burgundy" href="#" size="small">
|
||||
<GiftIcon width={20} height={20} color="burgundy" />
|
||||
Join Scandic Friends
|
||||
</Link>
|
||||
<div className={styles.right}>
|
||||
<LanguageSwitcher />
|
||||
<Search />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user