managarten/apps/zitare/packages/web-ui/src/index.ts
Till-JS 75a2527b60 feat(zitare): rename quote project to zitare and add global search
- Rename entire quote project to zitare (German name)
- Add global search page with quote and author search
- Add search to navigation with Cmd/Ctrl+K shortcut
- Add missing icons to PillNavigation (heart, list, compass)
- Update all package names from @quote/* to @zitare/*
- Update env variables from QUOTE_* to ZITARE_*
- Update CLAUDE.md documentation
- Fix layout with flex container structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 20:14:19 +01:00

18 lines
1,010 B
TypeScript

// Components
export { default as ContentCard } from './components/ContentCard.svelte';
export { default as AppSidebar } from './components/AppSidebar.svelte';
export { default as BrowsePage } from './components/BrowsePage.svelte';
export { default as FavoritesPage } from './components/FavoritesPage.svelte';
export { default as DiscoverAppsPage } from './components/DiscoverAppsPage.svelte';
export { default as PageHeader } from './components/PageHeader.svelte';
export { default as SearchBox } from './components/SearchBox.svelte';
export { default as CategoryFilters } from './components/CategoryFilters.svelte';
export { default as ToastContainer } from './components/ToastContainer.svelte';
// Stores
export { isSidebarCollapsed } from './stores/sidebar';
export { theme } from './stores/theme';
export { toast, type Toast, type ToastType } from './stores/toast';
// Note: ToastContainer and ErrorBoundary are available
// but should be imported directly when needed to avoid unnecessary dependencies