// app/beach/page.tsx import { getConfig } from '../lib/config'; import BeachClientPage from './BeachClientPage'; export const metadata = { title: 'Beachturnering', }; export default async function BeachPage() { const config = await getConfig(); return ; }