import { getSupabaseServerClient } from '@kit/supabase/server-client'; import { createVerbandApi } from '@kit/verbandsverwaltung/api'; import { VerbandTabNavigation } from '@kit/verbandsverwaltung/components'; import { CmsPageShell } from '~/components/cms-page-shell'; import SettingsContent from './_components/settings-content'; import { AccountNotFound } from '~/components/account-not-found'; interface Props { params: Promise<{ account: string }>; } export default async function SettingsPage({ params }: Props) { 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 = createVerbandApi(client); const [roles, types, feeTypes] = await Promise.all([ api.listRoles(acct.id), api.listTypes(acct.id), api.listFeeTypes(acct.id), ]); return ( ); }