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

@@ -3,7 +3,8 @@
import { useState, useEffect } from 'react'
import { BibleReader } from '@/components/bible/reader'
import { ChatInterface } from '@/components/chat/chat-interface'
import { PrayerWall } from '@/components/prayer/prayer-wall'
// DISABLED: Prayer Wall Feature
// import { PrayerWall } from '@/components/prayer/prayer-wall'
export default function Dashboard() {
const [activeTab, setActiveTab] = useState('bible')
@@ -41,8 +42,9 @@ export default function Dashboard() {
return <BibleReader />
case 'chat':
return <ChatInterface />
case 'prayers':
return <PrayerWall />
// DISABLED: Prayer Wall Feature
// case 'prayers':
// return <PrayerWall />
case 'search':
return (
<div className="bg-white rounded-lg shadow-md p-6">
@@ -76,7 +78,8 @@ export default function Dashboard() {
const tabs = [
{ id: 'bible', label: 'Citește Biblia' },
{ id: 'chat', label: 'Chat AI' },
{ id: 'prayers', label: 'Rugăciuni' },
// DISABLED: Prayer Wall Feature
// { id: 'prayers', label: 'Rugăciuni' },
{ id: 'search', label: 'Căutare' },
]