<turbo-stream action="replace" target="tab-content"><template><turbo-frame id="tab-content">
  <div class="bg-white py-8 px-6">
    <div class="flex justify-center mb-6">
      <div class="flex items-center">
        <span class="text-red-600 text-4xl font-bold mr-2 leading-none flex items-center">
          0
        </span>
        <span class="text-black text-3xl font-bold leading-none flex items-center">
          Registered Exhibitors
        </span>
      </div>
    </div>
    <div class="sm:p-4 px-2 py-4">
    <div class="flex justify-between pb-2 border-b border-gray-400">
      <p class="text-3xl font-bold">Corporate Sponsors (0)</p>
    </div>
</div>

    <div class="sm:p-4 px-2 py-4" x-data="{viewAll: false}">
  <div class="flex justify-between pb-2 border-b border-gray-400">
    <h3 class="text-3xl font-bold">
      Featured Exhibitors (0)
    </h3>
  </div>
  <div :class="viewAll ? 'overflow-hidden max-h-56' : ''" >
    <ul class="flex flex-wrap gap-2 py-4">
</ul>

  </div>
  <div x-show="viewAll" @click="viewAll = false" class="bg-white flex justify-center">
    <span class="px-5 py-3 text-center cursor-pointer uppercase text-rm-light-blue text-2xl font-bold">
      View All Featured Exhibitors
    </span>
  </div>
</div>

    <div class="sm:p-4 px-2 py-4" x-data="{viewAll: false}">
  <div class="flex justify-between pb-2 border-b border-gray-400">
    <h3 class="text-3xl font-bold">
      All Exhibitors (0)
    </h3>
  </div>
  <div :class="viewAll ? 'overflow-hidden max-h-56' : ''" >
    
  </div>
  <div x-show="viewAll" @click="viewAll = false" class="bg-white flex justify-center">
    <span class="px-5 py-3 text-center cursor-pointer uppercase text-rm-light-blue text-2xl font-bold">
      View All Featured Exhibitors
    </span>
  </div>
</div>

  </div>
  <h2 class="text-center text-lg italic p-4 text-gray-600">
    Our events average over 50 exhibitors, and the list is not final until the day of the event.
    Check back regularly for additions.
  </h2>
</turbo-frame>
</template></turbo-stream>