managarten/packages/shared-profile-ui/src/index.ts
Till-JS 2dc289c595 feat(chat): add shared profile UI package and integrate into navigation
- Create @manacore/shared-profile-ui package with ProfilePage component
- Add glassmorphism-styled profile page with user info and actions
- Move profile link into user dropdown menu as first item
- Move layout toggle control to end of navigation
- Fix pill navigation styling in sidebar mode (full-width pills, proper spacing)
- Fix segmented control button hover states with proper border-radius
- Fix theme mode selector blur styling in dropdown

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 21:40:47 +01:00

12 lines
297 B
TypeScript

/**
* Shared profile UI components for Manacore monorepo
*
* This package contains Svelte 5 components for displaying
* user profile information.
*/
// Pages
export { default as ProfilePage } from './ProfilePage.svelte';
// Types
export type { UserProfile, ProfileActions } from './types';