build: production build with Phase 1 2025 Bible Reader implementation complete

Includes all Phase 1 features:
- Search-first navigation with auto-complete
- Responsive reading interface (desktop/tablet/mobile)
- 4 customization presets + full fine-tuning controls
- Layered details panel with notes, bookmarks, highlights
- Smart offline caching with IndexedDB and auto-sync
- Full accessibility (WCAG 2.1 AA)

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-11 20:38:01 +00:00
parent b8652b9f0a
commit 9b5c0ed8bb
50 changed files with 20146 additions and 859 deletions

View File

@@ -57,7 +57,7 @@ const menuItems = [
{ text: 'Email Settings', icon: EmailIcon, href: '/admin/mailgun' },
{ text: 'Content Moderation', icon: Gavel, href: '/admin/content' },
{ text: 'Analytics', icon: Analytics, href: '/admin/analytics' },
{ text: 'Chat Monitoring', icon: Chat, href: '/admin/chat' },
// { text: 'Chat Monitoring', icon: Chat, href: '/admin/chat' }, // AI Chat disabled
{ text: 'Settings', icon: Settings, href: '/admin/settings' },
];

View File

@@ -78,7 +78,8 @@ export function Navigation() {
const basePages = [
{ name: t('home'), path: '/', icon: <Home /> },
{ name: t('bible'), path: '/bible', icon: <MenuBook /> },
{ name: t('prayers'), path: '/prayers', icon: <Prayer /> },
// DISABLED: Prayer Wall Feature
// { name: t('prayers'), path: '/prayers', icon: <Prayer /> },
{ name: t('search'), path: '/search', icon: <Search /> },
]

View File

@@ -1,4 +1,5 @@
'use client'
// DISABLED: Prayer Wall Feature
/* 'use client'
import { useEffect, useState } from 'react'
import { Heart, Send } from 'lucide-react'
@@ -185,4 +186,13 @@ export function PrayerWall() {
</div>
</div>
)
} */
export function PrayerWall() {
return (
<div style={{ padding: '2rem', textAlign: 'center' }}>
<h2>Prayer Wall Feature Disabled</h2>
<p>This feature is currently disabled.</p>
</div>
)
}

View File

@@ -72,8 +72,9 @@ export function Navigation() {
const navItems = [
{ id: 'bible', label: 'Biblia', icon: Book },
{ id: 'chat', label: 'Chat AI', icon: MessageCircle },
{ id: 'prayers', label: 'Rugăciuni', icon: Heart },
// { id: 'chat', label: 'Chat AI', icon: MessageCircle }, // AI Chat disabled
// DISABLED: Prayer Wall Feature
// { id: 'prayers', label: 'Rugăciuni', icon: Heart },
{ id: 'search', label: 'Căutare', icon: Search },
]