Files
web/app/[lang]/webview/loyalty-page/page.tsx
2024-05-28 08:30:20 +02:00

26 lines
865 B
TypeScript

import { serverClient } from "@/lib/trpc/server"
import { Blocks } from "@/components/Loyalty/Blocks/WebView"
import Sidebar from "@/components/Loyalty/Sidebar"
import MaxWidth from "@/components/MaxWidth"
import LinkToOverview from "@/components/Webviews/LinkToOverview"
import styles from "./page.module.css"
import { LangParams, PageArgs } from "@/types/params"
export default async function AboutScandicFriends({
params,
}: PageArgs<LangParams>) {
const loyaltyPage = await serverClient().contentstack.loyaltyPage.get()
return (
<section className={styles.content}>
<LinkToOverview lang={params.lang} />
{loyaltyPage.sidebar ? <Sidebar blocks={loyaltyPage.sidebar} /> : null}
<MaxWidth className={styles.blocks} tag="main">
<Blocks blocks={loyaltyPage.blocks} lang={params.lang} />
</MaxWidth>
</section>
)
}