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