import { getSupabaseServerClient } from '@kit/supabase/server-client'; import { CreateNewsletterForm } from '@kit/newsletter/components'; import { CmsPageShell } from '~/components/cms-page-shell'; interface Props { params: Promise<{ account: string }> } export default async function NewNewsletterPage({ 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