feat(site): tabs (#144)

This commit is contained in:
Darius Cepulis
2025-10-29 12:43:03 -05:00
committed by GitHub
parent 419911f2f2
commit df4692dbda
35 changed files with 999 additions and 304 deletions
+7
View File
@@ -0,0 +1,7 @@
import { map } from 'nanostores';
/**
* Store for managing tabs state across Astro islands.
* Maps tabs ID to currently active tab value.
*/
export const $tabs = map<Record<string, string>>({});