35 lines
872 B
TypeScript
35 lines
872 B
TypeScript
import "@/app/globals.css"
|
|
import "@scandic-hotels/design-system/style.css"
|
|
|
|
import { notFound } from "next/navigation"
|
|
|
|
import { _ } from "@/lib/translation"
|
|
import { serverClient } from "@/lib/trpc/server"
|
|
|
|
import MaxWidth from "@/components/MaxWidth"
|
|
import Content from "@/components/MyPages/AccountPage/Webview/Content"
|
|
|
|
import styles from "./page.module.css"
|
|
|
|
import { LangParams, PageArgs, UriParams } from "@/types/params"
|
|
|
|
export default async function MyPages({
|
|
params,
|
|
searchParams,
|
|
}: PageArgs<LangParams, UriParams>) {
|
|
if (!searchParams.uri) {
|
|
return notFound()
|
|
}
|
|
|
|
const accountPage = await serverClient().contentstack.accountPage.get({
|
|
url: searchParams.uri,
|
|
lang: params.lang,
|
|
})
|
|
|
|
return (
|
|
<MaxWidth className={styles.blocks} tag="main">
|
|
<Content lang={params.lang} content={accountPage.content} />
|
|
</MaxWidth>
|
|
)
|
|
}
|