Files
website/app/beach/page.tsx
T
2026-03-05 17:35:27 +01:00

12 lines
305 B
TypeScript

// 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 <BeachClientPage config={config} />;
}