diff --git a/.env.development b/.env.development
index 56f658970..b7956046a 100644
--- a/.env.development
+++ b/.env.development
@@ -122,11 +122,11 @@ PICTURE_GOOGLE_CLIENT_ID=
PICTURE_APPLE_CLIENT_ID=
# ============================================
-# QUOTE PROJECT
+# ZITARE PROJECT
# ============================================
-QUOTE_BACKEND_PORT=3007
-QUOTE_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/quote
+ZITARE_BACKEND_PORT=3007
+ZITARE_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/zitare
# ============================================
# PRESI PROJECT
@@ -142,3 +142,25 @@ PRESI_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/presi
VOXEL_LAVA_BACKEND_PORT=3010
VOXEL_LAVA_DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/voxel_lava
VOXEL_LAVA_API_URL=http://localhost:3010
+
+# ============================================
+# MANA-GAMES PROJECT
+# ============================================
+
+MANA_GAMES_BACKEND_PORT=3011
+
+# Google Gemini API (primary, fast)
+MANA_GAMES_GOOGLE_GENAI_API_KEY=your_google_genai_key_here
+
+# Anthropic Claude API (best code quality)
+MANA_GAMES_ANTHROPIC_API_KEY=your_anthropic_key_here
+
+# Azure OpenAI API (alternative)
+MANA_GAMES_AZURE_OPENAI_ENDPOINT=https://your-endpoint.openai.azure.com
+MANA_GAMES_AZURE_OPENAI_API_KEY=your_azure_openai_key_here
+MANA_GAMES_AZURE_OPENAI_DEPLOYMENT=gpt-4o
+
+# GitHub (for community submissions)
+MANA_GAMES_GITHUB_TOKEN=your_github_token_here
+MANA_GAMES_GITHUB_OWNER=tillschneider
+MANA_GAMES_GITHUB_REPO=mana-games
diff --git a/CLAUDE.md b/CLAUDE.md
index 6e7a88d1b..766792ade 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -22,7 +22,7 @@ This is a pnpm workspace monorepo containing multiple product applications with
| **uload** | URL shortener | SvelteKit web, PocketBase/Drizzle |
| **chat** | AI chat application | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
| **wisekeep** | AI wisdom extraction from video | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
-| **quote** | Daily inspiration quotes | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
+| **zitare** | Daily inspiration quotes | NestJS backend, Expo mobile, SvelteKit web, Astro landing |
| **bauntown** | Community website for developers | Astro landing |
## Development Commands
@@ -37,7 +37,7 @@ pnpm run memoro:dev
pnpm run picture:dev
pnpm run chat:dev
pnpm run wisekeep:dev
-pnpm run quote:dev
+pnpm run zitare:dev
pnpm run bauntown:dev
# Start specific app within project
diff --git a/apps/quote/apps/web/src/routes/+layout.svelte b/apps/quote/apps/web/src/routes/+layout.svelte
deleted file mode 100644
index 70b5375b6..000000000
--- a/apps/quote/apps/web/src/routes/+layout.svelte
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- {#if !isHomePage}
-
- {/if}
-
-
-
diff --git a/apps/quote/apps/web/vite.config.ts b/apps/quote/apps/web/vite.config.ts
deleted file mode 100644
index fce9e8704..000000000
--- a/apps/quote/apps/web/vite.config.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import { sveltekit } from '@sveltejs/kit/vite';
-import { defineConfig } from 'vite';
-
-export default defineConfig({
- plugins: [sveltekit()],
-});
diff --git a/apps/quote/package.json b/apps/quote/package.json
deleted file mode 100644
index e467350b8..000000000
--- a/apps/quote/package.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "name": "quote",
- "version": "1.0.0",
- "private": true,
- "description": "Quote App - Daily Inspiration",
- "scripts": {
- "dev": "turbo run dev",
- "dev:backend": "pnpm --filter @quote/backend dev",
- "dev:web": "pnpm --filter @quote/web dev",
- "dev:landing": "pnpm --filter @quote/landing dev",
- "dev:mobile": "pnpm --filter @quote/mobile dev",
- "build": "turbo run build",
- "lint": "turbo run lint",
- "type-check": "turbo run type-check",
- "clean": "turbo run clean",
- "db:push": "pnpm --filter @quote/backend db:push",
- "db:studio": "pnpm --filter @quote/backend db:studio",
- "db:seed": "pnpm --filter @quote/backend db:seed"
- },
- "devDependencies": {
- "turbo": "^2.3.0",
- "typescript": "^5.9.3"
- },
- "packageManager": "pnpm@9.15.0"
-}
diff --git a/apps/quote/CLAUDE.md b/apps/zitare/CLAUDE.md
similarity index 76%
rename from apps/quote/CLAUDE.md
rename to apps/zitare/CLAUDE.md
index 38e066126..c7f45c339 100644
--- a/apps/quote/CLAUDE.md
+++ b/apps/zitare/CLAUDE.md
@@ -1,18 +1,18 @@
-# Quote Project Guide
+# Zitare Project Guide
## Project Structure
```
-apps/quote/
+apps/zitare/
├── apps/
-│ ├── backend/ # NestJS API server (@quote/backend)
-│ ├── landing/ # Astro marketing landing page (@quote/landing)
-│ ├── web/ # SvelteKit web application (@quote/web)
-│ └── mobile/ # Expo/React Native mobile app (@quote/mobile)
+│ ├── backend/ # NestJS API server (@zitare/backend)
+│ ├── landing/ # Astro marketing landing page (@zitare/landing)
+│ ├── web/ # SvelteKit web application (@zitare/web)
+│ └── mobile/ # Expo/React Native mobile app (@zitare/mobile)
├── packages/
-│ ├── shared/ # Shared types, utils, configs (@quote/shared)
-│ ├── content/ # Quote data and content (@quote/content)
-│ └── web-ui/ # Shared Svelte components (@quote/web-ui)
+│ ├── shared/ # Shared types, utils, configs (@zitare/shared)
+│ ├── content/ # Quote data and content (@zitare/content)
+│ └── web-ui/ # Shared Svelte components (@zitare/web-ui)
└── package.json
```
@@ -21,15 +21,15 @@ apps/quote/
### Root Level (from monorepo root)
```bash
-pnpm quote:dev # Run all quote apps
-pnpm dev:quote:mobile # Start mobile app
-pnpm dev:quote:web # Start web app
-pnpm dev:quote:landing # Start landing page
-pnpm dev:quote:backend # Start backend server
-pnpm dev:quote:app # Start web + backend together
+pnpm zitare:dev # Run all zitare apps
+pnpm dev:zitare:mobile # Start mobile app
+pnpm dev:zitare:web # Start web app
+pnpm dev:zitare:landing # Start landing page
+pnpm dev:zitare:backend # Start backend server
+pnpm dev:zitare:app # Start web + backend together
```
-### Mobile App (apps/quote/apps/mobile)
+### Mobile App (apps/zitare/apps/mobile)
```bash
pnpm dev # Start Expo dev server
@@ -37,7 +37,7 @@ pnpm ios # Run on iOS simulator
pnpm android # Run on Android emulator
```
-### Backend (apps/quote/apps/backend)
+### Backend (apps/zitare/apps/backend)
```bash
pnpm dev # Start with hot reload
@@ -47,7 +47,7 @@ pnpm db:push # Push schema to database
pnpm db:studio # Open Drizzle Studio
```
-### Web App (apps/quote/apps/web)
+### Web App (apps/zitare/apps/web)
```bash
pnpm dev # Start dev server
@@ -55,7 +55,7 @@ pnpm build # Build for production
pnpm preview # Preview production build
```
-### Landing Page (apps/quote/apps/landing)
+### Landing Page (apps/zitare/apps/landing)
```bash
pnpm dev # Start dev server
@@ -74,7 +74,7 @@ pnpm build # Build for production
### Content Delivery (Hybrid)
-- **Static Content**: Quotes and authors are bundled in `@quote/content` package for offline access
+- **Static Content**: Quotes and authors are bundled in `@zitare/content` package for offline access
- **Backend API**: User-specific data (favorites, lists) are stored in PostgreSQL via backend API
### Backend API Endpoints
@@ -119,7 +119,7 @@ pnpm build # Build for production
```
NODE_ENV=development
PORT=3007
-DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/quote
+DATABASE_URL=postgresql://manacore:devpassword@localhost:5432/zitare
MANA_CORE_AUTH_URL=http://localhost:3001
CORS_ORIGINS=http://localhost:5173,http://localhost:5177,http://localhost:8081
```
@@ -140,19 +140,19 @@ PUBLIC_MANA_CORE_AUTH_URL=http://localhost:3001
## Shared Packages
-### @quote/shared
+### @zitare/shared
- Types: `ContentItem`, `ContentAuthor`, `Quote`, `QuoteMetadata`
- Utils: Search, filter, random selection functions
- Configs: App configuration
-### @quote/content
+### @zitare/content
- Static quote data (German and English)
- Author information with biographies
- Export functions for data access
-### @quote/web-ui
+### @zitare/web-ui
- Shared Svelte 5 components
- Styling utilities
diff --git a/apps/quote/apps/backend/drizzle.config.ts b/apps/zitare/apps/backend/drizzle.config.ts
similarity index 100%
rename from apps/quote/apps/backend/drizzle.config.ts
rename to apps/zitare/apps/backend/drizzle.config.ts
diff --git a/apps/quote/apps/backend/nest-cli.json b/apps/zitare/apps/backend/nest-cli.json
similarity index 87%
rename from apps/quote/apps/backend/nest-cli.json
rename to apps/zitare/apps/backend/nest-cli.json
index 97f80c1d1..b4a4fa09c 100644
--- a/apps/quote/apps/backend/nest-cli.json
+++ b/apps/zitare/apps/backend/nest-cli.json
@@ -3,7 +3,7 @@
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
- "deleteOutDir": true,
+ "deleteOutDir": false,
"assets": [],
"watchAssets": false
}
diff --git a/apps/quote/apps/backend/package.json b/apps/zitare/apps/backend/package.json
similarity index 98%
rename from apps/quote/apps/backend/package.json
rename to apps/zitare/apps/backend/package.json
index 2c547c187..d30b55c72 100644
--- a/apps/quote/apps/backend/package.json
+++ b/apps/zitare/apps/backend/package.json
@@ -1,5 +1,5 @@
{
- "name": "@quote/backend",
+ "name": "@zitare/backend",
"version": "1.0.0",
"private": true,
"scripts": {
diff --git a/apps/quote/apps/backend/src/app.module.ts b/apps/zitare/apps/backend/src/app.module.ts
similarity index 100%
rename from apps/quote/apps/backend/src/app.module.ts
rename to apps/zitare/apps/backend/src/app.module.ts
diff --git a/apps/quote/apps/backend/src/db/connection.ts b/apps/zitare/apps/backend/src/db/connection.ts
similarity index 100%
rename from apps/quote/apps/backend/src/db/connection.ts
rename to apps/zitare/apps/backend/src/db/connection.ts
diff --git a/apps/quote/apps/backend/src/db/database.module.ts b/apps/zitare/apps/backend/src/db/database.module.ts
similarity index 100%
rename from apps/quote/apps/backend/src/db/database.module.ts
rename to apps/zitare/apps/backend/src/db/database.module.ts
diff --git a/apps/quote/apps/backend/src/db/migrate.ts b/apps/zitare/apps/backend/src/db/migrate.ts
similarity index 100%
rename from apps/quote/apps/backend/src/db/migrate.ts
rename to apps/zitare/apps/backend/src/db/migrate.ts
diff --git a/apps/quote/apps/backend/src/db/schema/favorites.schema.ts b/apps/zitare/apps/backend/src/db/schema/favorites.schema.ts
similarity index 100%
rename from apps/quote/apps/backend/src/db/schema/favorites.schema.ts
rename to apps/zitare/apps/backend/src/db/schema/favorites.schema.ts
diff --git a/apps/quote/apps/backend/src/db/schema/index.ts b/apps/zitare/apps/backend/src/db/schema/index.ts
similarity index 100%
rename from apps/quote/apps/backend/src/db/schema/index.ts
rename to apps/zitare/apps/backend/src/db/schema/index.ts
diff --git a/apps/quote/apps/backend/src/db/schema/user-lists.schema.ts b/apps/zitare/apps/backend/src/db/schema/user-lists.schema.ts
similarity index 100%
rename from apps/quote/apps/backend/src/db/schema/user-lists.schema.ts
rename to apps/zitare/apps/backend/src/db/schema/user-lists.schema.ts
diff --git a/apps/quote/apps/backend/src/favorite/favorite.controller.ts b/apps/zitare/apps/backend/src/favorite/favorite.controller.ts
similarity index 100%
rename from apps/quote/apps/backend/src/favorite/favorite.controller.ts
rename to apps/zitare/apps/backend/src/favorite/favorite.controller.ts
diff --git a/apps/quote/apps/backend/src/favorite/favorite.module.ts b/apps/zitare/apps/backend/src/favorite/favorite.module.ts
similarity index 100%
rename from apps/quote/apps/backend/src/favorite/favorite.module.ts
rename to apps/zitare/apps/backend/src/favorite/favorite.module.ts
diff --git a/apps/quote/apps/backend/src/favorite/favorite.service.ts b/apps/zitare/apps/backend/src/favorite/favorite.service.ts
similarity index 100%
rename from apps/quote/apps/backend/src/favorite/favorite.service.ts
rename to apps/zitare/apps/backend/src/favorite/favorite.service.ts
diff --git a/apps/quote/apps/backend/src/health/health.controller.ts b/apps/zitare/apps/backend/src/health/health.controller.ts
similarity index 100%
rename from apps/quote/apps/backend/src/health/health.controller.ts
rename to apps/zitare/apps/backend/src/health/health.controller.ts
diff --git a/apps/quote/apps/backend/src/health/health.module.ts b/apps/zitare/apps/backend/src/health/health.module.ts
similarity index 100%
rename from apps/quote/apps/backend/src/health/health.module.ts
rename to apps/zitare/apps/backend/src/health/health.module.ts
diff --git a/apps/quote/apps/backend/src/list/list.controller.ts b/apps/zitare/apps/backend/src/list/list.controller.ts
similarity index 100%
rename from apps/quote/apps/backend/src/list/list.controller.ts
rename to apps/zitare/apps/backend/src/list/list.controller.ts
diff --git a/apps/quote/apps/backend/src/list/list.module.ts b/apps/zitare/apps/backend/src/list/list.module.ts
similarity index 100%
rename from apps/quote/apps/backend/src/list/list.module.ts
rename to apps/zitare/apps/backend/src/list/list.module.ts
diff --git a/apps/quote/apps/backend/src/list/list.service.ts b/apps/zitare/apps/backend/src/list/list.service.ts
similarity index 100%
rename from apps/quote/apps/backend/src/list/list.service.ts
rename to apps/zitare/apps/backend/src/list/list.service.ts
diff --git a/apps/quote/apps/backend/src/main.ts b/apps/zitare/apps/backend/src/main.ts
similarity index 100%
rename from apps/quote/apps/backend/src/main.ts
rename to apps/zitare/apps/backend/src/main.ts
diff --git a/apps/quote/apps/backend/tsconfig.json b/apps/zitare/apps/backend/tsconfig.json
similarity index 100%
rename from apps/quote/apps/backend/tsconfig.json
rename to apps/zitare/apps/backend/tsconfig.json
diff --git a/apps/quote/apps/landing/astro.config.mjs b/apps/zitare/apps/landing/astro.config.mjs
similarity index 100%
rename from apps/quote/apps/landing/astro.config.mjs
rename to apps/zitare/apps/landing/astro.config.mjs
diff --git a/apps/quote/apps/landing/package.json b/apps/zitare/apps/landing/package.json
similarity index 91%
rename from apps/quote/apps/landing/package.json
rename to apps/zitare/apps/landing/package.json
index 8b9d93fa9..58b6392ea 100644
--- a/apps/quote/apps/landing/package.json
+++ b/apps/zitare/apps/landing/package.json
@@ -1,5 +1,5 @@
{
- "name": "@quote/landing",
+ "name": "@zitare/landing",
"version": "1.0.0",
"private": true,
"scripts": {
diff --git a/apps/quote/apps/landing/src/layouts/Layout.astro b/apps/zitare/apps/landing/src/layouts/Layout.astro
similarity index 100%
rename from apps/quote/apps/landing/src/layouts/Layout.astro
rename to apps/zitare/apps/landing/src/layouts/Layout.astro
diff --git a/apps/quote/apps/landing/src/pages/index.astro b/apps/zitare/apps/landing/src/pages/index.astro
similarity index 100%
rename from apps/quote/apps/landing/src/pages/index.astro
rename to apps/zitare/apps/landing/src/pages/index.astro
diff --git a/apps/quote/apps/landing/tsconfig.json b/apps/zitare/apps/landing/tsconfig.json
similarity index 100%
rename from apps/quote/apps/landing/tsconfig.json
rename to apps/zitare/apps/landing/tsconfig.json
diff --git a/apps/quote/apps/mobile/.gitignore b/apps/zitare/apps/mobile/.gitignore
similarity index 100%
rename from apps/quote/apps/mobile/.gitignore
rename to apps/zitare/apps/mobile/.gitignore
diff --git a/apps/quote/apps/mobile/app-env.d.ts b/apps/zitare/apps/mobile/app-env.d.ts
similarity index 100%
rename from apps/quote/apps/mobile/app-env.d.ts
rename to apps/zitare/apps/mobile/app-env.d.ts
diff --git a/apps/quote/apps/mobile/app.json b/apps/zitare/apps/mobile/app.json
similarity index 100%
rename from apps/quote/apps/mobile/app.json
rename to apps/zitare/apps/mobile/app.json
diff --git a/apps/quote/apps/mobile/app/(tabs)/NativeTabsLayout.tsx b/apps/zitare/apps/mobile/app/(tabs)/NativeTabsLayout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/NativeTabsLayout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/NativeTabsLayout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/_layout.tsx b/apps/zitare/apps/mobile/app/(tabs)/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/_layout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/authors/_layout.tsx b/apps/zitare/apps/mobile/app/(tabs)/authors/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/authors/_layout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/authors/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/authors/index.tsx b/apps/zitare/apps/mobile/app/(tabs)/authors/index.tsx
similarity index 99%
rename from apps/quote/apps/mobile/app/(tabs)/authors/index.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/authors/index.tsx
index eef96eb61..1c2f955c8 100644
--- a/apps/quote/apps/mobile/app/(tabs)/authors/index.tsx
+++ b/apps/zitare/apps/mobile/app/(tabs)/authors/index.tsx
@@ -25,7 +25,7 @@ import Animated, {
withSpring,
} from 'react-native-reanimated';
import { useTranslation } from 'react-i18next';
-import type { Author } from '@quote/shared';
+import type { Author } from '@zitare/shared';
import { LIST_ITEM_CLASSES, LIST_CONTAINER_PADDING } from '~/constants/layout';
import AuthorCard from '~/components/AuthorCard';
import { useTheme } from '~/hooks/useTheme';
diff --git a/apps/quote/apps/mobile/app/(tabs)/liste/_layout.tsx b/apps/zitare/apps/mobile/app/(tabs)/liste/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/liste/_layout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/liste/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/liste/index.tsx b/apps/zitare/apps/mobile/app/(tabs)/liste/index.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/liste/index.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/liste/index.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/myquotes/_layout.tsx b/apps/zitare/apps/mobile/app/(tabs)/myquotes/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/myquotes/_layout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/myquotes/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/myquotes/index.tsx b/apps/zitare/apps/mobile/app/(tabs)/myquotes/index.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/myquotes/index.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/myquotes/index.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/quotes/_layout.tsx b/apps/zitare/apps/mobile/app/(tabs)/quotes/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/quotes/_layout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/quotes/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/quotes/index.tsx b/apps/zitare/apps/mobile/app/(tabs)/quotes/index.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/quotes/index.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/quotes/index.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/search/_layout.tsx b/apps/zitare/apps/mobile/app/(tabs)/search/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/search/_layout.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/search/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/(tabs)/search/index.tsx b/apps/zitare/apps/mobile/app/(tabs)/search/index.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/(tabs)/search/index.tsx
rename to apps/zitare/apps/mobile/app/(tabs)/search/index.tsx
diff --git a/apps/quote/apps/mobile/app/+html.tsx b/apps/zitare/apps/mobile/app/+html.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/+html.tsx
rename to apps/zitare/apps/mobile/app/+html.tsx
diff --git a/apps/quote/apps/mobile/app/+not-found.tsx b/apps/zitare/apps/mobile/app/+not-found.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/+not-found.tsx
rename to apps/zitare/apps/mobile/app/+not-found.tsx
diff --git a/apps/quote/apps/mobile/app/_layout.tsx b/apps/zitare/apps/mobile/app/_layout.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/_layout.tsx
rename to apps/zitare/apps/mobile/app/_layout.tsx
diff --git a/apps/quote/apps/mobile/app/author/[id].tsx b/apps/zitare/apps/mobile/app/author/[id].tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/author/[id].tsx
rename to apps/zitare/apps/mobile/app/author/[id].tsx
diff --git a/apps/quote/apps/mobile/app/list/[id].tsx b/apps/zitare/apps/mobile/app/list/[id].tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/list/[id].tsx
rename to apps/zitare/apps/mobile/app/list/[id].tsx
diff --git a/apps/quote/apps/mobile/app/onboarding.tsx b/apps/zitare/apps/mobile/app/onboarding.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/onboarding.tsx
rename to apps/zitare/apps/mobile/app/onboarding.tsx
diff --git a/apps/quote/apps/mobile/app/paywall.tsx b/apps/zitare/apps/mobile/app/paywall.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/paywall.tsx
rename to apps/zitare/apps/mobile/app/paywall.tsx
diff --git a/apps/quote/apps/mobile/app/settings.tsx b/apps/zitare/apps/mobile/app/settings.tsx
similarity index 100%
rename from apps/quote/apps/mobile/app/settings.tsx
rename to apps/zitare/apps/mobile/app/settings.tsx
diff --git a/apps/quote/apps/mobile/assets/adaptive-icon.png b/apps/zitare/apps/mobile/assets/adaptive-icon.png
similarity index 100%
rename from apps/quote/apps/mobile/assets/adaptive-icon.png
rename to apps/zitare/apps/mobile/assets/adaptive-icon.png
diff --git a/apps/quote/apps/mobile/assets/favicon.png b/apps/zitare/apps/mobile/assets/favicon.png
similarity index 100%
rename from apps/quote/apps/mobile/assets/favicon.png
rename to apps/zitare/apps/mobile/assets/favicon.png
diff --git a/apps/quote/apps/mobile/assets/icon.png b/apps/zitare/apps/mobile/assets/icon.png
similarity index 100%
rename from apps/quote/apps/mobile/assets/icon.png
rename to apps/zitare/apps/mobile/assets/icon.png
diff --git a/apps/quote/apps/mobile/assets/splash.png b/apps/zitare/apps/mobile/assets/splash.png
similarity index 100%
rename from apps/quote/apps/mobile/assets/splash.png
rename to apps/zitare/apps/mobile/assets/splash.png
diff --git a/apps/quote/apps/mobile/assets/zitare.icon/Assets/Zitare App Icon 02.svg b/apps/zitare/apps/mobile/assets/zitare.icon/Assets/Zitare App Icon 02.svg
similarity index 100%
rename from apps/quote/apps/mobile/assets/zitare.icon/Assets/Zitare App Icon 02.svg
rename to apps/zitare/apps/mobile/assets/zitare.icon/Assets/Zitare App Icon 02.svg
diff --git a/apps/quote/apps/mobile/assets/zitare.icon/icon.json b/apps/zitare/apps/mobile/assets/zitare.icon/icon.json
similarity index 100%
rename from apps/quote/apps/mobile/assets/zitare.icon/icon.json
rename to apps/zitare/apps/mobile/assets/zitare.icon/icon.json
diff --git a/apps/quote/apps/mobile/components/AuthorCard.tsx b/apps/zitare/apps/mobile/components/AuthorCard.tsx
similarity index 99%
rename from apps/quote/apps/mobile/components/AuthorCard.tsx
rename to apps/zitare/apps/mobile/components/AuthorCard.tsx
index b3f951ecc..d67d76a6f 100644
--- a/apps/quote/apps/mobile/components/AuthorCard.tsx
+++ b/apps/zitare/apps/mobile/components/AuthorCard.tsx
@@ -6,7 +6,7 @@ import { Icon } from '~/components/Icon';
import { useRouter } from 'expo-router';
import * as Haptics from 'expo-haptics';
import * as Clipboard from 'expo-clipboard';
-import type { Author } from '@quote/shared';
+import type { Author } from '@zitare/shared';
import { useThemeStore, useIsDarkMode } from '~/store/settingsStore';
import { useTheme } from '~/hooks/useTheme';
import { AuthorAvatar } from '~/components/authors/AuthorAvatar';
diff --git a/apps/quote/apps/mobile/components/CloudSyncButton.tsx b/apps/zitare/apps/mobile/components/CloudSyncButton.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/CloudSyncButton.tsx
rename to apps/zitare/apps/mobile/components/CloudSyncButton.tsx
diff --git a/apps/quote/apps/mobile/components/ErrorBoundary.tsx b/apps/zitare/apps/mobile/components/ErrorBoundary.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/ErrorBoundary.tsx
rename to apps/zitare/apps/mobile/components/ErrorBoundary.tsx
diff --git a/apps/quote/apps/mobile/components/Icon.tsx b/apps/zitare/apps/mobile/components/Icon.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/Icon.tsx
rename to apps/zitare/apps/mobile/components/Icon.tsx
diff --git a/apps/quote/apps/mobile/components/PremiumLimitDialog.tsx b/apps/zitare/apps/mobile/components/PremiumLimitDialog.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/PremiumLimitDialog.tsx
rename to apps/zitare/apps/mobile/components/PremiumLimitDialog.tsx
diff --git a/apps/quote/apps/mobile/components/QuickAddToList.tsx b/apps/zitare/apps/mobile/components/QuickAddToList.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/QuickAddToList.tsx
rename to apps/zitare/apps/mobile/components/QuickAddToList.tsx
diff --git a/apps/quote/apps/mobile/components/QuoteCard.tsx b/apps/zitare/apps/mobile/components/QuoteCard.tsx
similarity index 99%
rename from apps/quote/apps/mobile/components/QuoteCard.tsx
rename to apps/zitare/apps/mobile/components/QuoteCard.tsx
index fe6832071..559eabe8b 100644
--- a/apps/quote/apps/mobile/components/QuoteCard.tsx
+++ b/apps/zitare/apps/mobile/components/QuoteCard.tsx
@@ -14,7 +14,7 @@ import Animated, {
Extrapolate,
SharedValue,
} from 'react-native-reanimated';
-import type { EnhancedQuote } from '@quote/shared';
+import type { EnhancedQuote } from '@zitare/shared';
import { useTheme } from '~/hooks/useTheme';
import { useTranslation } from 'react-i18next';
import { useShare } from '~/hooks/useShare';
diff --git a/apps/quote/apps/mobile/components/Text.tsx b/apps/zitare/apps/mobile/components/Text.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/Text.tsx
rename to apps/zitare/apps/mobile/components/Text.tsx
diff --git a/apps/quote/apps/mobile/components/authors/ActiveFilterChips.tsx b/apps/zitare/apps/mobile/components/authors/ActiveFilterChips.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/authors/ActiveFilterChips.tsx
rename to apps/zitare/apps/mobile/components/authors/ActiveFilterChips.tsx
diff --git a/apps/quote/apps/mobile/components/authors/AuthorAvatar.tsx b/apps/zitare/apps/mobile/components/authors/AuthorAvatar.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/authors/AuthorAvatar.tsx
rename to apps/zitare/apps/mobile/components/authors/AuthorAvatar.tsx
diff --git a/apps/quote/apps/mobile/components/authors/AuthorFilterBottomSheet.tsx b/apps/zitare/apps/mobile/components/authors/AuthorFilterBottomSheet.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/authors/AuthorFilterBottomSheet.tsx
rename to apps/zitare/apps/mobile/components/authors/AuthorFilterBottomSheet.tsx
diff --git a/apps/quote/apps/mobile/components/authors/AuthorFilterSheet.tsx b/apps/zitare/apps/mobile/components/authors/AuthorFilterSheet.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/authors/AuthorFilterSheet.tsx
rename to apps/zitare/apps/mobile/components/authors/AuthorFilterSheet.tsx
diff --git a/apps/quote/apps/mobile/components/common/Button.tsx b/apps/zitare/apps/mobile/components/common/Button.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/Button.tsx
rename to apps/zitare/apps/mobile/components/common/Button.tsx
diff --git a/apps/quote/apps/mobile/components/common/FavoriteButton.tsx b/apps/zitare/apps/mobile/components/common/FavoriteButton.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/FavoriteButton.tsx
rename to apps/zitare/apps/mobile/components/common/FavoriteButton.tsx
diff --git a/apps/quote/apps/mobile/components/common/GlassFAB.tsx b/apps/zitare/apps/mobile/components/common/GlassFAB.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/GlassFAB.tsx
rename to apps/zitare/apps/mobile/components/common/GlassFAB.tsx
diff --git a/apps/quote/apps/mobile/components/common/GlassTabSelector.tsx b/apps/zitare/apps/mobile/components/common/GlassTabSelector.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/GlassTabSelector.tsx
rename to apps/zitare/apps/mobile/components/common/GlassTabSelector.tsx
diff --git a/apps/quote/apps/mobile/components/common/Header.tsx b/apps/zitare/apps/mobile/components/common/Header.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/Header.tsx
rename to apps/zitare/apps/mobile/components/common/Header.tsx
diff --git a/apps/quote/apps/mobile/components/common/IconButton.tsx b/apps/zitare/apps/mobile/components/common/IconButton.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/IconButton.tsx
rename to apps/zitare/apps/mobile/components/common/IconButton.tsx
diff --git a/apps/quote/apps/mobile/components/common/LoadingScreen.tsx b/apps/zitare/apps/mobile/components/common/LoadingScreen.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/LoadingScreen.tsx
rename to apps/zitare/apps/mobile/components/common/LoadingScreen.tsx
diff --git a/apps/quote/apps/mobile/components/common/TabSelector.tsx b/apps/zitare/apps/mobile/components/common/TabSelector.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/common/TabSelector.tsx
rename to apps/zitare/apps/mobile/components/common/TabSelector.tsx
diff --git a/apps/quote/apps/mobile/components/onboarding/AppleStyleOnboarding.tsx b/apps/zitare/apps/mobile/components/onboarding/AppleStyleOnboarding.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/onboarding/AppleStyleOnboarding.tsx
rename to apps/zitare/apps/mobile/components/onboarding/AppleStyleOnboarding.tsx
diff --git a/apps/quote/apps/mobile/components/quotes/ActiveQuoteFilterChips.tsx b/apps/zitare/apps/mobile/components/quotes/ActiveQuoteFilterChips.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/quotes/ActiveQuoteFilterChips.tsx
rename to apps/zitare/apps/mobile/components/quotes/ActiveQuoteFilterChips.tsx
diff --git a/apps/quote/apps/mobile/components/quotes/QuoteFilterSheet.tsx b/apps/zitare/apps/mobile/components/quotes/QuoteFilterSheet.tsx
similarity index 100%
rename from apps/quote/apps/mobile/components/quotes/QuoteFilterSheet.tsx
rename to apps/zitare/apps/mobile/components/quotes/QuoteFilterSheet.tsx
diff --git a/apps/quote/apps/mobile/constants/layout.ts b/apps/zitare/apps/mobile/constants/layout.ts
similarity index 100%
rename from apps/quote/apps/mobile/constants/layout.ts
rename to apps/zitare/apps/mobile/constants/layout.ts
diff --git a/apps/quote/apps/mobile/constants/storageKeys.ts b/apps/zitare/apps/mobile/constants/storageKeys.ts
similarity index 100%
rename from apps/quote/apps/mobile/constants/storageKeys.ts
rename to apps/zitare/apps/mobile/constants/storageKeys.ts
diff --git a/apps/quote/apps/mobile/global.css b/apps/zitare/apps/mobile/global.css
similarity index 100%
rename from apps/quote/apps/mobile/global.css
rename to apps/zitare/apps/mobile/global.css
diff --git a/apps/quote/apps/mobile/hooks/useListCreation.ts b/apps/zitare/apps/mobile/hooks/useListCreation.ts
similarity index 100%
rename from apps/quote/apps/mobile/hooks/useListCreation.ts
rename to apps/zitare/apps/mobile/hooks/useListCreation.ts
diff --git a/apps/quote/apps/mobile/hooks/useShare.ts b/apps/zitare/apps/mobile/hooks/useShare.ts
similarity index 98%
rename from apps/quote/apps/mobile/hooks/useShare.ts
rename to apps/zitare/apps/mobile/hooks/useShare.ts
index bbbf2371f..108e22bc5 100644
--- a/apps/quote/apps/mobile/hooks/useShare.ts
+++ b/apps/zitare/apps/mobile/hooks/useShare.ts
@@ -7,7 +7,7 @@ import { Share, Alert, Platform } from 'react-native';
import * as Clipboard from 'expo-clipboard';
import * as Haptics from 'expo-haptics';
import { useTranslation } from 'react-i18next';
-import type { EnhancedQuote, Author } from '@quote/shared';
+import type { EnhancedQuote, Author } from '@zitare/shared';
export function useShare() {
const { t } = useTranslation();
diff --git a/apps/quote/apps/mobile/hooks/useTheme.tsx b/apps/zitare/apps/mobile/hooks/useTheme.tsx
similarity index 100%
rename from apps/quote/apps/mobile/hooks/useTheme.tsx
rename to apps/zitare/apps/mobile/hooks/useTheme.tsx
diff --git a/apps/quote/apps/mobile/i18n/config.ts b/apps/zitare/apps/mobile/i18n/config.ts
similarity index 100%
rename from apps/quote/apps/mobile/i18n/config.ts
rename to apps/zitare/apps/mobile/i18n/config.ts
diff --git a/apps/quote/apps/mobile/metro.config.js b/apps/zitare/apps/mobile/metro.config.js
similarity index 100%
rename from apps/quote/apps/mobile/metro.config.js
rename to apps/zitare/apps/mobile/metro.config.js
diff --git a/apps/quote/apps/mobile/nativewind-env.d.ts b/apps/zitare/apps/mobile/nativewind-env.d.ts
similarity index 100%
rename from apps/quote/apps/mobile/nativewind-env.d.ts
rename to apps/zitare/apps/mobile/nativewind-env.d.ts
diff --git a/apps/quote/apps/mobile/package.json b/apps/zitare/apps/mobile/package.json
similarity index 97%
rename from apps/quote/apps/mobile/package.json
rename to apps/zitare/apps/mobile/package.json
index de9efa9c3..a88691681 100644
--- a/apps/quote/apps/mobile/package.json
+++ b/apps/zitare/apps/mobile/package.json
@@ -1,5 +1,5 @@
{
- "name": "@quote/mobile",
+ "name": "@zitare/mobile",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
@@ -20,7 +20,7 @@
"web": "pnpm run build:biographies && expo start --web"
},
"dependencies": {
- "@quote/shared": "workspace:*",
+ "@zitare/shared": "workspace:*",
"@anthropic-ai/sdk": "^0.65.0",
"@bacons/apple-targets": "^3.0.2",
"@expo/metro-runtime": "~6.1.2",
diff --git a/apps/quote/apps/mobile/scripts/addAllMissingTranslations.py b/apps/zitare/apps/mobile/scripts/addAllMissingTranslations.py
similarity index 100%
rename from apps/quote/apps/mobile/scripts/addAllMissingTranslations.py
rename to apps/zitare/apps/mobile/scripts/addAllMissingTranslations.py
diff --git a/apps/quote/apps/mobile/scripts/addBiosBatch1.ts b/apps/zitare/apps/mobile/scripts/addBiosBatch1.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/addBiosBatch1.ts
rename to apps/zitare/apps/mobile/scripts/addBiosBatch1.ts
diff --git a/apps/quote/apps/mobile/scripts/addBiosBatch2.ts b/apps/zitare/apps/mobile/scripts/addBiosBatch2.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/addBiosBatch2.ts
rename to apps/zitare/apps/mobile/scripts/addBiosBatch2.ts
diff --git a/apps/quote/apps/mobile/scripts/addBiosBatch3.ts b/apps/zitare/apps/mobile/scripts/addBiosBatch3.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/addBiosBatch3.ts
rename to apps/zitare/apps/mobile/scripts/addBiosBatch3.ts
diff --git a/apps/quote/apps/mobile/scripts/addBiosBatch4.ts b/apps/zitare/apps/mobile/scripts/addBiosBatch4.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/addBiosBatch4.ts
rename to apps/zitare/apps/mobile/scripts/addBiosBatch4.ts
diff --git a/apps/quote/apps/mobile/scripts/addDetailedBios.ts b/apps/zitare/apps/mobile/scripts/addDetailedBios.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/addDetailedBios.ts
rename to apps/zitare/apps/mobile/scripts/addDetailedBios.ts
diff --git a/apps/quote/apps/mobile/scripts/analyzeQuoteCounts.ts b/apps/zitare/apps/mobile/scripts/analyzeQuoteCounts.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/analyzeQuoteCounts.ts
rename to apps/zitare/apps/mobile/scripts/analyzeQuoteCounts.ts
diff --git a/apps/quote/apps/mobile/scripts/archive/addBuddhaNietzscheQuotes.js b/apps/zitare/apps/mobile/scripts/archive/addBuddhaNietzscheQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/addBuddhaNietzscheQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/addBuddhaNietzscheQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/addMajorAuthorsQuotes.js b/apps/zitare/apps/mobile/scripts/archive/addMajorAuthorsQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/addMajorAuthorsQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/addMajorAuthorsQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/addMoreEinsteinQuotes.js b/apps/zitare/apps/mobile/scripts/archive/addMoreEinsteinQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/addMoreEinsteinQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/addMoreEinsteinQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/addShakespeareQuotes.js b/apps/zitare/apps/mobile/scripts/archive/addShakespeareQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/addShakespeareQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/addShakespeareQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/analyzeAuthorDistribution.js b/apps/zitare/apps/mobile/scripts/archive/analyzeAuthorDistribution.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/analyzeAuthorDistribution.js
rename to apps/zitare/apps/mobile/scripts/archive/analyzeAuthorDistribution.js
diff --git a/apps/quote/apps/mobile/scripts/archive/checkDuplicates.js b/apps/zitare/apps/mobile/scripts/archive/checkDuplicates.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/checkDuplicates.js
rename to apps/zitare/apps/mobile/scripts/archive/checkDuplicates.js
diff --git a/apps/quote/apps/mobile/scripts/archive/createEnglishTranslations.js b/apps/zitare/apps/mobile/scripts/archive/createEnglishTranslations.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/createEnglishTranslations.js
rename to apps/zitare/apps/mobile/scripts/archive/createEnglishTranslations.js
diff --git a/apps/quote/apps/mobile/scripts/archive/mergeHardcodedQuotes.js b/apps/zitare/apps/mobile/scripts/archive/mergeHardcodedQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/mergeHardcodedQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/mergeHardcodedQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/mergeQuotes.js b/apps/zitare/apps/mobile/scripts/archive/mergeQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/mergeQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/mergeQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/removeDuplicates.js b/apps/zitare/apps/mobile/scripts/archive/removeDuplicates.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/removeDuplicates.js
rename to apps/zitare/apps/mobile/scripts/archive/removeDuplicates.js
diff --git a/apps/quote/apps/mobile/scripts/archive/removeFinalDuplicate.js b/apps/zitare/apps/mobile/scripts/archive/removeFinalDuplicate.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/removeFinalDuplicate.js
rename to apps/zitare/apps/mobile/scripts/archive/removeFinalDuplicate.js
diff --git a/apps/quote/apps/mobile/scripts/archive/removeFinalDuplicates.js b/apps/zitare/apps/mobile/scripts/archive/removeFinalDuplicates.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/removeFinalDuplicates.js
rename to apps/zitare/apps/mobile/scripts/archive/removeFinalDuplicates.js
diff --git a/apps/quote/apps/mobile/scripts/archive/translateAllQuotes.js b/apps/zitare/apps/mobile/scripts/archive/translateAllQuotes.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/translateAllQuotes.js
rename to apps/zitare/apps/mobile/scripts/archive/translateAllQuotes.js
diff --git a/apps/quote/apps/mobile/scripts/archive/translateBatch2.js b/apps/zitare/apps/mobile/scripts/archive/translateBatch2.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/translateBatch2.js
rename to apps/zitare/apps/mobile/scripts/archive/translateBatch2.js
diff --git a/apps/quote/apps/mobile/scripts/archive/translateBatch3.js b/apps/zitare/apps/mobile/scripts/archive/translateBatch3.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/translateBatch3.js
rename to apps/zitare/apps/mobile/scripts/archive/translateBatch3.js
diff --git a/apps/quote/apps/mobile/scripts/archive/translateBatch4Final.js b/apps/zitare/apps/mobile/scripts/archive/translateBatch4Final.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/archive/translateBatch4Final.js
rename to apps/zitare/apps/mobile/scripts/archive/translateBatch4Final.js
diff --git a/apps/quote/apps/mobile/scripts/buildBiographies.ts b/apps/zitare/apps/mobile/scripts/buildBiographies.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/buildBiographies.ts
rename to apps/zitare/apps/mobile/scripts/buildBiographies.ts
diff --git a/apps/quote/apps/mobile/scripts/checkBiographyCompleteness.ts b/apps/zitare/apps/mobile/scripts/checkBiographyCompleteness.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/checkBiographyCompleteness.ts
rename to apps/zitare/apps/mobile/scripts/checkBiographyCompleteness.ts
diff --git a/apps/quote/apps/mobile/scripts/cleanupAuthors.ts b/apps/zitare/apps/mobile/scripts/cleanupAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/cleanupAuthors.ts
rename to apps/zitare/apps/mobile/scripts/cleanupAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/dedup.mjs b/apps/zitare/apps/mobile/scripts/dedup.mjs
similarity index 100%
rename from apps/quote/apps/mobile/scripts/dedup.mjs
rename to apps/zitare/apps/mobile/scripts/dedup.mjs
diff --git a/apps/quote/apps/mobile/scripts/dedup_de_only.mjs b/apps/zitare/apps/mobile/scripts/dedup_de_only.mjs
similarity index 100%
rename from apps/quote/apps/mobile/scripts/dedup_de_only.mjs
rename to apps/zitare/apps/mobile/scripts/dedup_de_only.mjs
diff --git a/apps/quote/apps/mobile/scripts/deduplicate.py b/apps/zitare/apps/mobile/scripts/deduplicate.py
similarity index 100%
rename from apps/quote/apps/mobile/scripts/deduplicate.py
rename to apps/zitare/apps/mobile/scripts/deduplicate.py
diff --git a/apps/quote/apps/mobile/scripts/deduplicateQuotes.ts b/apps/zitare/apps/mobile/scripts/deduplicateQuotes.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/deduplicateQuotes.ts
rename to apps/zitare/apps/mobile/scripts/deduplicateQuotes.ts
diff --git a/apps/quote/apps/mobile/scripts/expandAdditionalAuthors.ts b/apps/zitare/apps/mobile/scripts/expandAdditionalAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandAdditionalAuthors.ts
rename to apps/zitare/apps/mobile/scripts/expandAdditionalAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/expandAuthorQuotes.ts b/apps/zitare/apps/mobile/scripts/expandAuthorQuotes.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandAuthorQuotes.ts
rename to apps/zitare/apps/mobile/scripts/expandAuthorQuotes.ts
diff --git a/apps/quote/apps/mobile/scripts/expandContinuedAuthors.ts b/apps/zitare/apps/mobile/scripts/expandContinuedAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandContinuedAuthors.ts
rename to apps/zitare/apps/mobile/scripts/expandContinuedAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/expandEvenMoreQuotes.ts b/apps/zitare/apps/mobile/scripts/expandEvenMoreQuotes.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandEvenMoreQuotes.ts
rename to apps/zitare/apps/mobile/scripts/expandEvenMoreQuotes.ts
diff --git a/apps/quote/apps/mobile/scripts/expandExistingAuthors.ts b/apps/zitare/apps/mobile/scripts/expandExistingAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandExistingAuthors.ts
rename to apps/zitare/apps/mobile/scripts/expandExistingAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/expandFinalAuthors.ts b/apps/zitare/apps/mobile/scripts/expandFinalAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandFinalAuthors.ts
rename to apps/zitare/apps/mobile/scripts/expandFinalAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/expandFinalRemaining.ts b/apps/zitare/apps/mobile/scripts/expandFinalRemaining.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandFinalRemaining.ts
rename to apps/zitare/apps/mobile/scripts/expandFinalRemaining.ts
diff --git a/apps/quote/apps/mobile/scripts/expandMoreAuthorQuotes.ts b/apps/zitare/apps/mobile/scripts/expandMoreAuthorQuotes.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandMoreAuthorQuotes.ts
rename to apps/zitare/apps/mobile/scripts/expandMoreAuthorQuotes.ts
diff --git a/apps/quote/apps/mobile/scripts/expandMoreAuthors.ts b/apps/zitare/apps/mobile/scripts/expandMoreAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandMoreAuthors.ts
rename to apps/zitare/apps/mobile/scripts/expandMoreAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/expandMoreRemainingAuthors.ts b/apps/zitare/apps/mobile/scripts/expandMoreRemainingAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandMoreRemainingAuthors.ts
rename to apps/zitare/apps/mobile/scripts/expandMoreRemainingAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/expandNextBatch.ts b/apps/zitare/apps/mobile/scripts/expandNextBatch.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/expandNextBatch.ts
rename to apps/zitare/apps/mobile/scripts/expandNextBatch.ts
diff --git a/apps/quote/apps/mobile/scripts/fetchAllAuthorImages.ts b/apps/zitare/apps/mobile/scripts/fetchAllAuthorImages.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fetchAllAuthorImages.ts
rename to apps/zitare/apps/mobile/scripts/fetchAllAuthorImages.ts
diff --git a/apps/quote/apps/mobile/scripts/fetchAuthorImages.ts b/apps/zitare/apps/mobile/scripts/fetchAuthorImages.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fetchAuthorImages.ts
rename to apps/zitare/apps/mobile/scripts/fetchAuthorImages.ts
diff --git a/apps/quote/apps/mobile/scripts/fetchMoreAuthorImages.ts b/apps/zitare/apps/mobile/scripts/fetchMoreAuthorImages.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fetchMoreAuthorImages.ts
rename to apps/zitare/apps/mobile/scripts/fetchMoreAuthorImages.ts
diff --git a/apps/quote/apps/mobile/scripts/finalCleanup.ts b/apps/zitare/apps/mobile/scripts/finalCleanup.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/finalCleanup.ts
rename to apps/zitare/apps/mobile/scripts/finalCleanup.ts
diff --git a/apps/quote/apps/mobile/scripts/finalFixBiographies.ts b/apps/zitare/apps/mobile/scripts/finalFixBiographies.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/finalFixBiographies.ts
rename to apps/zitare/apps/mobile/scripts/finalFixBiographies.ts
diff --git a/apps/quote/apps/mobile/scripts/findMissingBios.ts b/apps/zitare/apps/mobile/scripts/findMissingBios.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/findMissingBios.ts
rename to apps/zitare/apps/mobile/scripts/findMissingBios.ts
diff --git a/apps/quote/apps/mobile/scripts/fixAllBiographyStructures.ts b/apps/zitare/apps/mobile/scripts/fixAllBiographyStructures.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fixAllBiographyStructures.ts
rename to apps/zitare/apps/mobile/scripts/fixAllBiographyStructures.ts
diff --git a/apps/quote/apps/mobile/scripts/fixAllSectionsIssues.ts b/apps/zitare/apps/mobile/scripts/fixAllSectionsIssues.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fixAllSectionsIssues.ts
rename to apps/zitare/apps/mobile/scripts/fixAllSectionsIssues.ts
diff --git a/apps/quote/apps/mobile/scripts/fixBiographyStructures.ts b/apps/zitare/apps/mobile/scripts/fixBiographyStructures.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fixBiographyStructures.ts
rename to apps/zitare/apps/mobile/scripts/fixBiographyStructures.ts
diff --git a/apps/quote/apps/mobile/scripts/fixEnglishBiographies.ts b/apps/zitare/apps/mobile/scripts/fixEnglishBiographies.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fixEnglishBiographies.ts
rename to apps/zitare/apps/mobile/scripts/fixEnglishBiographies.ts
diff --git a/apps/quote/apps/mobile/scripts/fixMissingImages.ts b/apps/zitare/apps/mobile/scripts/fixMissingImages.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/fixMissingImages.ts
rename to apps/zitare/apps/mobile/scripts/fixMissingImages.ts
diff --git a/apps/quote/apps/mobile/scripts/generateMissingBios.ts b/apps/zitare/apps/mobile/scripts/generateMissingBios.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/generateMissingBios.ts
rename to apps/zitare/apps/mobile/scripts/generateMissingBios.ts
diff --git a/apps/quote/apps/mobile/scripts/generateRemainingBios.ts b/apps/zitare/apps/mobile/scripts/generateRemainingBios.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/generateRemainingBios.ts
rename to apps/zitare/apps/mobile/scripts/generateRemainingBios.ts
diff --git a/apps/quote/apps/mobile/scripts/integrateAllAuthors.ts b/apps/zitare/apps/mobile/scripts/integrateAllAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/integrateAllAuthors.ts
rename to apps/zitare/apps/mobile/scripts/integrateAllAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/integrateAllQuotes.ts b/apps/zitare/apps/mobile/scripts/integrateAllQuotes.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/integrateAllQuotes.ts
rename to apps/zitare/apps/mobile/scripts/integrateAllQuotes.ts
diff --git a/apps/quote/apps/mobile/scripts/integrateAuthorImages.ts b/apps/zitare/apps/mobile/scripts/integrateAuthorImages.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/integrateAuthorImages.ts
rename to apps/zitare/apps/mobile/scripts/integrateAuthorImages.ts
diff --git a/apps/quote/apps/mobile/scripts/migrateMarkdownToTS.ts b/apps/zitare/apps/mobile/scripts/migrateMarkdownToTS.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/migrateMarkdownToTS.ts
rename to apps/zitare/apps/mobile/scripts/migrateMarkdownToTS.ts
diff --git a/apps/quote/apps/mobile/scripts/removeDoubleClosingBraces.ts b/apps/zitare/apps/mobile/scripts/removeDoubleClosingBraces.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/removeDoubleClosingBraces.ts
rename to apps/zitare/apps/mobile/scripts/removeDoubleClosingBraces.ts
diff --git a/apps/quote/apps/mobile/scripts/removeDuplicateAuthors.ts b/apps/zitare/apps/mobile/scripts/removeDuplicateAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/removeDuplicateAuthors.ts
rename to apps/zitare/apps/mobile/scripts/removeDuplicateAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/removeDuplicates.js b/apps/zitare/apps/mobile/scripts/removeDuplicates.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/removeDuplicates.js
rename to apps/zitare/apps/mobile/scripts/removeDuplicates.js
diff --git a/apps/quote/apps/mobile/scripts/syncAuthors.ts b/apps/zitare/apps/mobile/scripts/syncAuthors.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/syncAuthors.ts
rename to apps/zitare/apps/mobile/scripts/syncAuthors.ts
diff --git a/apps/quote/apps/mobile/scripts/syncMarkdownBiographies.ts b/apps/zitare/apps/mobile/scripts/syncMarkdownBiographies.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/syncMarkdownBiographies.ts
rename to apps/zitare/apps/mobile/scripts/syncMarkdownBiographies.ts
diff --git a/apps/quote/apps/mobile/scripts/syncTranslations.py b/apps/zitare/apps/mobile/scripts/syncTranslations.py
similarity index 100%
rename from apps/quote/apps/mobile/scripts/syncTranslations.py
rename to apps/zitare/apps/mobile/scripts/syncTranslations.py
diff --git a/apps/quote/apps/mobile/scripts/testMultilingualLoading.js b/apps/zitare/apps/mobile/scripts/testMultilingualLoading.js
similarity index 100%
rename from apps/quote/apps/mobile/scripts/testMultilingualLoading.js
rename to apps/zitare/apps/mobile/scripts/testMultilingualLoading.js
diff --git a/apps/quote/apps/mobile/scripts/updateAuthorBiographies.ts b/apps/zitare/apps/mobile/scripts/updateAuthorBiographies.ts
similarity index 100%
rename from apps/quote/apps/mobile/scripts/updateAuthorBiographies.ts
rename to apps/zitare/apps/mobile/scripts/updateAuthorBiographies.ts
diff --git a/apps/quote/apps/mobile/services/RevenueCat.mock.ts b/apps/zitare/apps/mobile/services/RevenueCat.mock.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/RevenueCat.mock.ts
rename to apps/zitare/apps/mobile/services/RevenueCat.mock.ts
diff --git a/apps/quote/apps/mobile/services/RevenueCat.ts b/apps/zitare/apps/mobile/services/RevenueCat.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/RevenueCat.ts
rename to apps/zitare/apps/mobile/services/RevenueCat.ts
diff --git a/apps/quote/apps/mobile/services/authorImagesService.ts b/apps/zitare/apps/mobile/services/authorImagesService.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/authorImagesService.ts
rename to apps/zitare/apps/mobile/services/authorImagesService.ts
diff --git a/apps/quote/apps/mobile/services/cloudSync/cloudSyncService.ts b/apps/zitare/apps/mobile/services/cloudSync/cloudSyncService.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/cloudSync/cloudSyncService.ts
rename to apps/zitare/apps/mobile/services/cloudSync/cloudSyncService.ts
diff --git a/apps/quote/apps/mobile/services/cloudSync/googleDriveSync.ts b/apps/zitare/apps/mobile/services/cloudSync/googleDriveSync.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/cloudSync/googleDriveSync.ts
rename to apps/zitare/apps/mobile/services/cloudSync/googleDriveSync.ts
diff --git a/apps/quote/apps/mobile/services/cloudSync/iCloudSync.ts b/apps/zitare/apps/mobile/services/cloudSync/iCloudSync.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/cloudSync/iCloudSync.ts
rename to apps/zitare/apps/mobile/services/cloudSync/iCloudSync.ts
diff --git a/apps/quote/apps/mobile/services/contentLoader.ts b/apps/zitare/apps/mobile/services/contentLoader.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/contentLoader.ts
rename to apps/zitare/apps/mobile/services/contentLoader.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759250890075.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759250890075.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759250890075.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759250890075.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759251034877.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759251034877.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759251034877.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759251034877.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759257484341.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759257484341.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759257484341.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759257484341.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759257799849.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759257799849.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759257799849.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759257799849.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759258012153.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759258012153.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759258012153.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759258012153.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759258708705.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759258708705.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759258708705.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759258708705.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup-1759259518644.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup-1759259518644.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup-1759259518644.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup-1759259518644.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.backup.ts b/apps/zitare/apps/mobile/services/data/authors/de.backup.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.backup.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.backup.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/de.ts b/apps/zitare/apps/mobile/services/data/authors/de.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/de.ts
rename to apps/zitare/apps/mobile/services/data/authors/de.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759250890083.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759250890083.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759250890083.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759250890083.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759251034888.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759251034888.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759251034888.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759251034888.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759257484353.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759257484353.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759257484353.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759257484353.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759257799861.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759257799861.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759257799861.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759257799861.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759258012166.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759258012166.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759258012166.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759258012166.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759258708717.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759258708717.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759258708717.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759258708717.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup-1759259518655.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup-1759259518655.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup-1759259518655.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup-1759259518655.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.backup.ts b/apps/zitare/apps/mobile/services/data/authors/en.backup.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.backup.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.backup.ts
diff --git a/apps/quote/apps/mobile/services/data/authors/en.ts b/apps/zitare/apps/mobile/services/data/authors/en.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/authors/en.ts
rename to apps/zitare/apps/mobile/services/data/authors/en.ts
diff --git a/apps/quote/apps/mobile/services/data/index.ts b/apps/zitare/apps/mobile/services/data/index.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/index.ts
rename to apps/zitare/apps/mobile/services/data/index.ts
diff --git a/apps/quote/apps/mobile/services/data/quotes/de.ts b/apps/zitare/apps/mobile/services/data/quotes/de.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/de.ts
rename to apps/zitare/apps/mobile/services/data/quotes/de.ts
diff --git a/apps/quote/apps/mobile/services/data/quotes/de.ts.backup-1759429015632 b/apps/zitare/apps/mobile/services/data/quotes/de.ts.backup-1759429015632
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/de.ts.backup-1759429015632
rename to apps/zitare/apps/mobile/services/data/quotes/de.ts.backup-1759429015632
diff --git a/apps/quote/apps/mobile/services/data/quotes/de.ts.backup-1759441420365 b/apps/zitare/apps/mobile/services/data/quotes/de.ts.backup-1759441420365
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/de.ts.backup-1759441420365
rename to apps/zitare/apps/mobile/services/data/quotes/de.ts.backup-1759441420365
diff --git a/apps/quote/apps/mobile/services/data/quotes/de.ts.backup-1759441927900 b/apps/zitare/apps/mobile/services/data/quotes/de.ts.backup-1759441927900
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/de.ts.backup-1759441927900
rename to apps/zitare/apps/mobile/services/data/quotes/de.ts.backup-1759441927900
diff --git a/apps/quote/apps/mobile/services/data/quotes/de.ts.bak-1759433422324 b/apps/zitare/apps/mobile/services/data/quotes/de.ts.bak-1759433422324
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/de.ts.bak-1759433422324
rename to apps/zitare/apps/mobile/services/data/quotes/de.ts.bak-1759433422324
diff --git a/apps/quote/apps/mobile/services/data/quotes/en.ts b/apps/zitare/apps/mobile/services/data/quotes/en.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/en.ts
rename to apps/zitare/apps/mobile/services/data/quotes/en.ts
diff --git a/apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759428894196 b/apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759428894196
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759428894196
rename to apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759428894196
diff --git a/apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759439666557 b/apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759439666557
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759439666557
rename to apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759439666557
diff --git a/apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759441927905 b/apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759441927905
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759441927905
rename to apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759441927905
diff --git a/apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759511904821 b/apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759511904821
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/en.ts.backup-1759511904821
rename to apps/zitare/apps/mobile/services/data/quotes/en.ts.backup-1759511904821
diff --git a/apps/quote/apps/mobile/services/data/quotes/en.ts.bak-1759433422400 b/apps/zitare/apps/mobile/services/data/quotes/en.ts.bak-1759433422400
similarity index 100%
rename from apps/quote/apps/mobile/services/data/quotes/en.ts.bak-1759433422400
rename to apps/zitare/apps/mobile/services/data/quotes/en.ts.bak-1759433422400
diff --git a/apps/quote/apps/mobile/services/dataBackup.ts b/apps/zitare/apps/mobile/services/dataBackup.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/dataBackup.ts
rename to apps/zitare/apps/mobile/services/dataBackup.ts
diff --git a/apps/quote/apps/mobile/services/markdownBiographyLoader.ts b/apps/zitare/apps/mobile/services/markdownBiographyLoader.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/markdownBiographyLoader.ts
rename to apps/zitare/apps/mobile/services/markdownBiographyLoader.ts
diff --git a/apps/quote/apps/mobile/services/multilingualContentLoader.ts b/apps/zitare/apps/mobile/services/multilingualContentLoader.ts
similarity index 99%
rename from apps/quote/apps/mobile/services/multilingualContentLoader.ts
rename to apps/zitare/apps/mobile/services/multilingualContentLoader.ts
index b23ec9a11..cb87f4062 100644
--- a/apps/quote/apps/mobile/services/multilingualContentLoader.ts
+++ b/apps/zitare/apps/mobile/services/multilingualContentLoader.ts
@@ -10,7 +10,7 @@ import {
authorsEN,
type Author,
type EnhancedQuote,
-} from '@quote/shared';
+} from '@zitare/shared';
import biographiesData from '../content/generated/biographies.json';
type Language = 'de' | 'en';
diff --git a/apps/quote/apps/mobile/services/persistentStorage.ts b/apps/zitare/apps/mobile/services/persistentStorage.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/persistentStorage.ts
rename to apps/zitare/apps/mobile/services/persistentStorage.ts
diff --git a/apps/quote/apps/mobile/services/wikimediaImageService.ts b/apps/zitare/apps/mobile/services/wikimediaImageService.ts
similarity index 100%
rename from apps/quote/apps/mobile/services/wikimediaImageService.ts
rename to apps/zitare/apps/mobile/services/wikimediaImageService.ts
diff --git a/apps/quote/apps/mobile/store/listStore.ts b/apps/zitare/apps/mobile/store/listStore.ts
similarity index 99%
rename from apps/quote/apps/mobile/store/listStore.ts
rename to apps/zitare/apps/mobile/store/listStore.ts
index 889341fcd..1f4fd2be2 100644
--- a/apps/quote/apps/mobile/store/listStore.ts
+++ b/apps/zitare/apps/mobile/store/listStore.ts
@@ -6,7 +6,7 @@
import { create } from 'zustand';
import { persist, createJSONStorage } from 'zustand/middleware';
import AsyncStorage from '@react-native-async-storage/async-storage';
-import type { EnhancedQuote } from '@quote/shared';
+import type { EnhancedQuote } from '@zitare/shared';
import { STORAGE_KEYS } from '~/constants/storageKeys';
// List Item with position and metadata
diff --git a/apps/quote/apps/mobile/store/onboardingStore.ts b/apps/zitare/apps/mobile/store/onboardingStore.ts
similarity index 100%
rename from apps/quote/apps/mobile/store/onboardingStore.ts
rename to apps/zitare/apps/mobile/store/onboardingStore.ts
diff --git a/apps/quote/apps/mobile/store/premiumStore.ts b/apps/zitare/apps/mobile/store/premiumStore.ts
similarity index 100%
rename from apps/quote/apps/mobile/store/premiumStore.ts
rename to apps/zitare/apps/mobile/store/premiumStore.ts
diff --git a/apps/quote/apps/mobile/store/quotesStore.ts b/apps/zitare/apps/mobile/store/quotesStore.ts
similarity index 99%
rename from apps/quote/apps/mobile/store/quotesStore.ts
rename to apps/zitare/apps/mobile/store/quotesStore.ts
index cfa2b0270..a7d52b92c 100644
--- a/apps/quote/apps/mobile/store/quotesStore.ts
+++ b/apps/zitare/apps/mobile/store/quotesStore.ts
@@ -6,7 +6,7 @@
import { create } from 'zustand';
import { persist, createJSONStorage } from 'zustand/middleware';
import AsyncStorage from '@react-native-async-storage/async-storage';
-import type { EnhancedQuote, Author } from '@quote/shared';
+import type { EnhancedQuote, Author } from '@zitare/shared';
import { multilingualContentLoader } from '../services/multilingualContentLoader';
import { WidgetDataManager, WidgetQuote } from './widgetDataManager';
import { useSettingsStore } from './settingsStore';
diff --git a/apps/quote/apps/mobile/store/settingsStore.ts b/apps/zitare/apps/mobile/store/settingsStore.ts
similarity index 100%
rename from apps/quote/apps/mobile/store/settingsStore.ts
rename to apps/zitare/apps/mobile/store/settingsStore.ts
diff --git a/apps/quote/apps/mobile/store/widgetDataManager.ts b/apps/zitare/apps/mobile/store/widgetDataManager.ts
similarity index 100%
rename from apps/quote/apps/mobile/store/widgetDataManager.ts
rename to apps/zitare/apps/mobile/store/widgetDataManager.ts
diff --git a/apps/quote/apps/mobile/tailwind.config.js b/apps/zitare/apps/mobile/tailwind.config.js
similarity index 100%
rename from apps/quote/apps/mobile/tailwind.config.js
rename to apps/zitare/apps/mobile/tailwind.config.js
diff --git a/apps/quote/apps/mobile/targets/widget/Info.plist b/apps/zitare/apps/mobile/targets/widget/Info.plist
similarity index 100%
rename from apps/quote/apps/mobile/targets/widget/Info.plist
rename to apps/zitare/apps/mobile/targets/widget/Info.plist
diff --git a/apps/quote/apps/mobile/targets/widget/generated.entitlements b/apps/zitare/apps/mobile/targets/widget/generated.entitlements
similarity index 100%
rename from apps/quote/apps/mobile/targets/widget/generated.entitlements
rename to apps/zitare/apps/mobile/targets/widget/generated.entitlements
diff --git a/apps/quote/apps/mobile/tsconfig.json b/apps/zitare/apps/mobile/tsconfig.json
similarity index 100%
rename from apps/quote/apps/mobile/tsconfig.json
rename to apps/zitare/apps/mobile/tsconfig.json
diff --git a/apps/quote/apps/mobile/types/json.d.ts b/apps/zitare/apps/mobile/types/json.d.ts
similarity index 100%
rename from apps/quote/apps/mobile/types/json.d.ts
rename to apps/zitare/apps/mobile/types/json.d.ts
diff --git a/apps/quote/apps/mobile/utils/authorFilters.ts b/apps/zitare/apps/mobile/utils/authorFilters.ts
similarity index 99%
rename from apps/quote/apps/mobile/utils/authorFilters.ts
rename to apps/zitare/apps/mobile/utils/authorFilters.ts
index e18f4e7fb..ea0bcd535 100644
--- a/apps/quote/apps/mobile/utils/authorFilters.ts
+++ b/apps/zitare/apps/mobile/utils/authorFilters.ts
@@ -1,4 +1,4 @@
-import type { Author } from '@quote/shared';
+import type { Author } from '@zitare/shared';
import { AuthorFilters } from '~/components/authors/AuthorFilterSheet';
/**
diff --git a/apps/quote/apps/mobile/utils/quoteFilters.ts b/apps/zitare/apps/mobile/utils/quoteFilters.ts
similarity index 99%
rename from apps/quote/apps/mobile/utils/quoteFilters.ts
rename to apps/zitare/apps/mobile/utils/quoteFilters.ts
index 712723fb8..2535a7c28 100644
--- a/apps/quote/apps/mobile/utils/quoteFilters.ts
+++ b/apps/zitare/apps/mobile/utils/quoteFilters.ts
@@ -1,4 +1,4 @@
-import type { EnhancedQuote } from '@quote/shared';
+import type { EnhancedQuote } from '@zitare/shared';
export interface QuoteFilters {
timePeriods: string[];
diff --git a/apps/quote/apps/web/THEMING.md b/apps/zitare/apps/web/THEMING.md
similarity index 100%
rename from apps/quote/apps/web/THEMING.md
rename to apps/zitare/apps/web/THEMING.md
diff --git a/apps/quote/apps/web/package.json b/apps/zitare/apps/web/package.json
similarity index 85%
rename from apps/quote/apps/web/package.json
rename to apps/zitare/apps/web/package.json
index 04ea9b69f..4a5cd659a 100644
--- a/apps/quote/apps/web/package.json
+++ b/apps/zitare/apps/web/package.json
@@ -1,5 +1,5 @@
{
- "name": "@quote/web",
+ "name": "@zitare/web",
"version": "1.0.0",
"private": true,
"scripts": {
@@ -28,8 +28,9 @@
"vite": "^6.0.0"
},
"dependencies": {
- "@quote/shared": "workspace:*",
- "@quote/web-ui": "workspace:*"
+ "@manacore/shared-ui": "workspace:*",
+ "@zitare/shared": "workspace:*",
+ "@zitare/web-ui": "workspace:*"
},
"type": "module"
}
diff --git a/apps/quote/apps/web/src/app.css b/apps/zitare/apps/web/src/app.css
similarity index 100%
rename from apps/quote/apps/web/src/app.css
rename to apps/zitare/apps/web/src/app.css
diff --git a/apps/quote/apps/web/src/app.html b/apps/zitare/apps/web/src/app.html
similarity index 100%
rename from apps/quote/apps/web/src/app.html
rename to apps/zitare/apps/web/src/app.html
diff --git a/apps/quote/apps/web/src/lib/components/AuthorCard.svelte b/apps/zitare/apps/web/src/lib/components/AuthorCard.svelte
similarity index 99%
rename from apps/quote/apps/web/src/lib/components/AuthorCard.svelte
rename to apps/zitare/apps/web/src/lib/components/AuthorCard.svelte
index 2b7fad5b9..3ab97cb6f 100644
--- a/apps/quote/apps/web/src/lib/components/AuthorCard.svelte
+++ b/apps/zitare/apps/web/src/lib/components/AuthorCard.svelte
@@ -1,5 +1,5 @@
+
+
+
+
+
+{#if loading}
+
+
+
+
Laden...
+
+
+{:else}
+
+
+
+
+
+
+
+
+ {@render children()}
+
+
+
+{/if}
diff --git a/apps/quote/apps/web/src/routes/+page.svelte b/apps/zitare/apps/web/src/routes/+page.svelte
similarity index 85%
rename from apps/quote/apps/web/src/routes/+page.svelte
rename to apps/zitare/apps/web/src/routes/+page.svelte
index 0e95c9cc0..da1f8a476 100644
--- a/apps/quote/apps/web/src/routes/+page.svelte
+++ b/apps/zitare/apps/web/src/routes/+page.svelte
@@ -1,5 +1,5 @@
- Quotes Web App - Home
-
+ Zitare - Inspirierende Zitate
+