import { ContactList } from '@/components/ContactList'; import { getContactItems } from '@/lib/data'; export const dynamic = 'force-dynamic'; export default async function ContactPage() { const items = await getContactItems(); return ; }