import { Suspense } from 'react'; import Navbar from '@/components/Navbar'; import OrderFromTableClient from './OrderFromTableClient'; /** * Server wrapper for /orderfromtable * * We must wrap any component that uses useSearchParams() in a Suspense boundary * (Next.js 16 requirement for pages that read search params). * * This keeps the actual ordering UI fully client-side while satisfying the framework. */ export default function OrderFromTablePage() { return (

Loading table...

} >
); }