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" export default async function Sidebar() { const navigation = await serverClient().contentstack.myPages.navigation.get() return ( ) }