mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 00:39:41 +02:00
Zitare was opaque Latin/Italian-flavored branding. Renamed to clear English "quotes" (DE: Zitate) matching short-concrete-noun cluster. - Module, routes, API, i18n, standalone landing app, plans dirs - Dexie tables: quotesFavorites, quotesLists, quotesListTags, customQuotes (dropped redundant "quotes" prefix on the last) - Logo QuotesLogo, theme quotes.css, search provider, dashboard widget QuoteWidget - German user-facing label "Zitate" (English brand stays Quotes) Pre-launch, no data migration needed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
71 lines
1.5 KiB
TypeScript
71 lines
1.5 KiB
TypeScript
/**
|
|
* Shared branding components and configuration for the Mana ecosystem
|
|
*
|
|
* This package provides:
|
|
* - App logos (AppLogo, AppLogoWithName)
|
|
* - Pre-configured app logos (MemoroLogo, ManaLogo, etc.)
|
|
* - Mana icon (ManaIcon)
|
|
* - Branding configuration (colors, names, taglines)
|
|
*/
|
|
|
|
// Generic Components
|
|
export { default as AppLogo } from './AppLogo.svelte';
|
|
export { default as AppLogoWithName } from './AppLogoWithName.svelte';
|
|
export { default as ManaIcon } from './ManaIcon.svelte';
|
|
|
|
// Pre-configured App Logos
|
|
export {
|
|
MemoroLogo,
|
|
ManaLogo,
|
|
CardsLogo,
|
|
UloadLogo,
|
|
ChatLogo,
|
|
PresiLogo,
|
|
FoodLogo,
|
|
QuotesLogo,
|
|
ContactsLogo,
|
|
CalendarLogo,
|
|
StorageLogo,
|
|
TodoLogo,
|
|
MailLogo,
|
|
MoodlitLogo,
|
|
InventoryLogo,
|
|
ClockLogo,
|
|
QuestionsLogo,
|
|
SkillTreeLogo,
|
|
PlantsLogo,
|
|
LightWriteLogo,
|
|
MusicLogo,
|
|
ContextLogo,
|
|
CitycornersLogo,
|
|
} from './logos';
|
|
|
|
// Configuration
|
|
export { APP_BRANDING, getAppBranding, getAllAppBrandings } from './config';
|
|
|
|
// App Icons (SVG data URLs)
|
|
export { APP_ICONS, type AppIconId } from './app-icons';
|
|
|
|
// Mana Apps Configuration
|
|
export {
|
|
MANA_APPS,
|
|
getManaApp,
|
|
getManaAppsByStatus,
|
|
getAvailableManaApps,
|
|
getActiveManaApps,
|
|
getAccessibleManaApps,
|
|
hasAppAccess,
|
|
getTierLevel,
|
|
APP_STATUS_LABELS,
|
|
APP_SLIDER_LABELS,
|
|
APP_URLS,
|
|
ACCESS_TIER_LABELS,
|
|
getPillAppItems,
|
|
type ManaApp,
|
|
type AppStatus,
|
|
type AccessTier,
|
|
type PillAppItemConfig,
|
|
} from './mana-apps';
|
|
|
|
// Types
|
|
export type { AppId, AppBranding, LogoProps, AppLogoWithNameProps } from './types';
|