mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 21:19:41 +02:00
- 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>
12 lines
297 B
TypeScript
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';
|