import { Suspense } from "react"; import UserProfileContent from "./content"; // page.tsx (Server Component) export default async function UserProfilePage({ params }: { params: { id: string }; }) { return ( Loading profile…}> ); }