feat: add SidePeek

This commit is contained in:
Arvid Norlin
2024-07-02 15:22:26 +02:00
committed by Chuma McPhoy
parent 04bc7ccf6c
commit 301de3a110
3 changed files with 176 additions and 0 deletions

View File

@@ -1,8 +1,11 @@
import Link from "next/link"
import { serverClient } from "@/lib/trpc/server"
import AmenitiesList from "./AmenitiesList"
import IntroSection from "./IntroSection"
import { Rooms } from "./Rooms"
import SidePeek from "@/components/TempDesignSystem/SidePeek"
import styles from "./hotelPage.module.css"
@@ -35,6 +38,15 @@ export default async function HotelPage({ lang }: LangParams) {
<AmenitiesList detailedFacilities={attributes.detailedFacilities} />
</div>
<Rooms rooms={roomCategories} />
<Link href={"?sidepeek=restaurantbar"} scroll={false}>
Restaurant and bar
</Link>
<Link href={"?sidepeek=gym"} scroll={false}>
Gym
</Link>
<Link href={"?sidepeek=meetings"} scroll={false}>
Meetings
</Link>
</main>
)
}