import "@/app/globals.css" import "@scandic-hotels/design-system/style.css" import { serverClient } from "@/lib/trpc/server" import MaxWidth from "@/components/MaxWidth" import Content from "@/components/MyPages/AccountPage/Content" import styles from "./benefits.module.css" import type { LangParams, PageArgs, UriParams } from "@/types/params" export default async function MyPages({ params, }: PageArgs) { const accountPage = await serverClient().contentstack.accountPage.get({ url: "/my-pages/benefits", lang: params.lang, }) return ( ) }