- Recent IPOs -
-+ {activeIdx === 0 ? "Recent IPOs" : "IPO News"} +
--
- {#each ["2025", "2024", "2023", "2022", "2021", "2020", "2019"] as item}
- (displaySection = item)}
- class="p-2 px-5 cursor-pointer {displaySection === item
- ? 'text-white bg-primary sm:hover:bg-opacity-[0.95]'
- : 'text-gray-400 sm:hover:text-white sm:hover:bg-primary sm:hover:bg-opacity-[0.95]'}"
- >
- {item}
-
+ {#each ["Latest", "2025", "2024", "2023", "2022", "2021", "2020", "2019"] as item}
+ {#if item !== "Latest"}
+ (displaySection = item)}
+ class="p-2 px-5 cursor-pointer {displaySection === item
+ ? 'text-white bg-primary sm:hover:bg-opacity-[0.95]'
+ : 'text-gray-400 sm:hover:text-white sm:hover:bg-primary sm:hover:bg-opacity-[0.95]'}"
+ >
+ {item}
+
+ {:else}
+ (displaySection = item)}
+ class="p-2 px-5 cursor-pointer {displaySection === item
+ ? 'text-white bg-primary sm:hover:bg-opacity-[0.95]'
+ : 'text-gray-400 sm:hover:text-white sm:hover:bg-primary sm:hover:bg-opacity-[0.95]'}"
+ >
+ {item}
+
+ {/if}
{/each}