"use client"; import { createLazyPage } from './PageLoader'; export const LazyChatPage = createLazyPage( () => import('../app/inference/chat/components/OptimizedChatPage').then(module => ({ default: module.OptimizedChatPage })),