import { getSupabaseServerClient } from '@kit/supabase/server-client'; import { createMeetingsApi } from '@kit/sitzungsprotokolle/api'; import { MeetingsTabNavigation, MeetingsDashboard } from '@kit/sitzungsprotokolle/components'; import { CmsPageShell } from '~/components/cms-page-shell'; import { AccountNotFound } from '~/components/account-not-found'; interface PageProps { params: Promise<{ account: string }>; } export default async function MeetingsPage({ params }: PageProps) { const { account } = await params; const client = getSupabaseServerClient(); const { data: acct } = await client .from('accounts') .select('id') .eq('slug', account) .single(); if (!acct) return ; const api = createMeetingsApi(client); const [stats, recentProtocols, overdueTasks] = await Promise.all([ api.getDashboardStats(acct.id), api.getRecentProtocols(acct.id), api.getOverdueTasks(acct.id), ]); return ( ); }