/** * Search params utility for Next.js pages. * * Re-exports from utils.ts for consistency with admin pages. * Next.js 15+ passes `searchParams` as a Promise. Values may be string, * string[], or undefined. This helper normalizes access to a single value. */ export { getSearchParam as getParam, type SearchParams } from "./utils"