"use client" import { SidePanel } from "../../SidePanel" import SummaryUI from "./UI" type Props = { isUserLoggedIn: boolean } export default function DesktopSummary({ isUserLoggedIn }: Props) { return ( ) }