import { Suspense } from "react"; import ContactPageClient from "./contact-page-client"; function LoadingContact() { return (
); } export default function Home() { return (
}>
); }