diff --git a/app/beach/page.tsx b/app/beach/page.tsx index 33048f6..49b06aa 100644 --- a/app/beach/page.tsx +++ b/app/beach/page.tsx @@ -2,11 +2,16 @@ import { getConfig } from '../lib/config'; import BeachClientPage from './BeachClientPage'; +export const dynamic = 'force-dynamic'; + export const metadata = { title: 'Beachturnering', }; export default async function BeachPage() { const config = await getConfig(); - return ; -} \ No newline at end of file + + const turnstileSiteKey = process.env.TURNSTILE_SITE_KEY || ''; + + return ; +}