mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 13:19:39 +02:00
New project with three apps: - Landing (Astro): static site with SVG illustrations, location data - Backend (NestJS, port 3025): CRUD API for locations + favorites, Drizzle ORM, auth via mana-core-auth - Web (SvelteKit, port 5196): Tailwind 4, PillNav, auth (login/register/SSO), Leaflet map, favorites with optimistic updates, theme/settings Infrastructure: DB init SQL, setup-databases.sh, generate-env.mjs, root package.json scripts, Dockerfiles, docker-compose.macmini.yml (backend:3025, web:5022), Cloudflare wrangler.toml. Branding: registered in shared-branding (AppId, APP_BRANDING, APP_ICONS, MANA_APPS, CitycornersLogo). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
67 lines
1.4 KiB
TypeScript
67 lines
1.4 KiB
TypeScript
/**
|
|
* Shared branding components and configuration for the Mana ecosystem
|
|
*
|
|
* This package provides:
|
|
* - App logos (AppLogo, AppLogoWithName)
|
|
* - Pre-configured app logos (MemoroLogo, ManaCoreLogo, 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,
|
|
ManaCoreLogo,
|
|
ManaDeckLogo,
|
|
UloadLogo,
|
|
ChatLogo,
|
|
PresiLogo,
|
|
NutriPhiLogo,
|
|
ZitareLogo,
|
|
ContactsLogo,
|
|
CalendarLogo,
|
|
StorageLogo,
|
|
TodoLogo,
|
|
MailLogo,
|
|
MoodlitLogo,
|
|
InventoryLogo,
|
|
ClockLogo,
|
|
QuestionsLogo,
|
|
SkillTreeLogo,
|
|
PlantaLogo,
|
|
PlaygroundLogo,
|
|
LightWriteLogo,
|
|
MukkeLogo,
|
|
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,
|
|
APP_STATUS_LABELS,
|
|
APP_SLIDER_LABELS,
|
|
APP_URLS,
|
|
getPillAppItems,
|
|
type ManaApp,
|
|
type AppStatus,
|
|
type PillAppItemConfig,
|
|
} from './mana-apps';
|
|
|
|
// Types
|
|
export type { AppId, AppBranding, LogoProps, AppLogoWithNameProps } from './types';
|