import { serverClient } from "@/lib/trpc/server" import Divider from "@/components/TempDesignSystem/Divider" import Header from "../Header" import Friend from "./Friend" import Stats from "./Stats" import styles from "./overview.module.css" import type { AccountPageComponentProps } from "@/types/components/myPages/myPage/accountPage" export default async function Overview({ link, subtitle, title, }: AccountPageComponentProps) { const user = await serverClient().user.get() return (
) }