import { Fragment } from "react" import { LogOut } from "react-feather" import { serverClient } from "@/lib/trpc/server" import Link from "@/components/TempDesignSystem/Link" import Title from "@/components/Title" import styles from "./sidebar.module.css" import type { SidebarProps } from "@/types/requests/myPages/navigation" export default async function Sidebar({ lang }: SidebarProps) { const navigation = await serverClient().contentstack.myPages.navigation.get(lang) return ( ) }