31 lines
861 B
TypeScript
31 lines
861 B
TypeScript
import { CreatePageForm } from '@kit/site-builder/components';
|
|
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
|
|
|
import { AccountNotFound } from '~/components/account-not-found';
|
|
import { CmsPageShell } from '~/components/cms-page-shell';
|
|
|
|
interface Props {
|
|
params: Promise<{ account: string }>;
|
|
}
|
|
|
|
export default async function NewSitePage({ 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 <AccountNotFound />;
|
|
|
|
return (
|
|
<CmsPageShell
|
|
account={account}
|
|
title="Neue Seite"
|
|
description="Seite für Ihre Vereinswebsite erstellen"
|
|
>
|
|
<CreatePageForm accountId={acct.id} account={account} />
|
|
</CmsPageShell>
|
|
);
|
|
}
|