import { Suspense } from 'react' import { dehydrate, HydrationBoundary } from '@tanstack/react-query' import type { Metadata } from 'next' import { getSession } from '@/lib/auth' import { getQueryClient } from '@/app/_shell/providers/get-query-client' import { prefetchHomeLists } from '@/app/workspace/[workspaceId]/home/prefetch' import { Home } from './home' import { HomeFallback } from './home-fallback' export const metadata: Metadata = { title: 'New chat', } export default async function HomePage({ params }: { params: Promise<{ workspaceId: string }> }) { const { workspaceId } = await params const queryClient = getQueryClient() const listsPrefetch = prefetchHomeLists(queryClient, workspaceId) const session = await getSession() await listsPrefetch return ( }> ) }