chore(SW-3145): Move Title and Subtitle to design-system * Move Title and Subtitle to design-system * Fix export Approved-by: Linus Flood
36 lines
941 B
TypeScript
36 lines
941 B
TypeScript
import Title from "@scandic-hotels/design-system/Title"
|
|
|
|
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import MaxWidth from "@/components/MaxWidth"
|
|
import TrackingSDK from "@/components/TrackingSDK"
|
|
import LinkToOverview from "@/components/Webviews/LinkToOverview"
|
|
|
|
import Blocks from "./Blocks"
|
|
|
|
import styles from "./loyaltyPage.module.css"
|
|
|
|
export default async function AboutScandicFriends() {
|
|
const caller = await serverClient()
|
|
const loyaltyPageRes = await caller.contentstack.loyaltyPage.get()
|
|
|
|
if (!loyaltyPageRes) {
|
|
return null
|
|
}
|
|
|
|
const { tracking, loyaltyPage } = loyaltyPageRes
|
|
return (
|
|
<>
|
|
<section className={styles.content}>
|
|
<LinkToOverview />
|
|
<MaxWidth tag="main" className={styles.blocks}>
|
|
<Title>{loyaltyPage.heading}</Title>
|
|
<Blocks blocks={loyaltyPage.blocks} />
|
|
</MaxWidth>
|
|
</section>
|
|
|
|
<TrackingSDK pageData={tracking} />
|
|
</>
|
|
)
|
|
}
|