import { _ } from "@/lib/translation" import { serverClient } from "@/lib/trpc/server" import Content from "@/components/MyPages/AccountPage/Content" import Sidebar from "@/components/MyPages/Sidebar" import styles from "./page.module.css" import type { LangParams, PageArgs } from "@/types/params" export default async function MyPages({ params, }: PageArgs) { const accountPage = await serverClient().contentstack.accountPage.get() return (
{accountPage.content.length ? ( ) : (

{_("No content published")}

)}
) }