import UserViewingMain from "@/components/pages/client/user-viewing/user-viewing";
import { loadUserViewingContent } from "@/lib/user-viewing-ghost-content";

export default async function UserViewingPage() {
  const content = await loadUserViewingContent();
  return <UserViewingMain content={content} />;
}
