app/act/consent/page.tsx
import { Suspense } from 'react';
import ConsentPage from '@/components/campaigns/ConsentPage';
export default function Page(){return <Suspense fallback={<p>Loading…</p>}><ConsentPage/></Suspense>;}