"use client"; import dynamic from "next/dynamic"; // Dynamically import IconSearch with no SSR to prevent hydration issues const IconSearchClient = dynamic( () => import("./IconSearch").then((mod) => ({ default: mod.IconSearch })), { ssr: false, loading: () => (