import { _ } from "@/lib/translation" import { serverClient } from "@/lib/trpc/server" import MaxWidth from "@/components/MaxWidth" import Content from "@/components/MyPages/AccountPage/Content" import styles from "./page.module.css" import type { LangParams, PageArgs } from "@/types/params" export default async function MyPageOverview({ params }: PageArgs) { const accountPage = await serverClient().contentstack.accountPage.get({ url: "/my-pages/overview", lang: params.lang, }) return ( ) }