Redesign search page with modern UX and user-specific features

- Complete redesign of search interface with auto-suggestions, advanced filtering, and professional result display
- Implement user-specific search history (stored per user ID) for privacy
- Move popular searches from sidebar to filters modal for better organization
- Make all page sections full width by removing container constraints
- Add comprehensive search functionality with context display, bookmarks integration, and result navigation
- Include proper Romanian translations for search types ("Căutare generală", "Căutare exactă")
- Enhance UX with skeleton loading, empty states, mobile responsiveness, and keyboard shortcuts

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
andupetcu
2025-09-21 21:23:05 +03:00
parent 40c2df3b41
commit 4cd9b406ad
3 changed files with 788 additions and 327 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -243,7 +243,11 @@
"empty": { "empty": {
"title": "Start searching Scripture", "title": "Start searching Scripture",
"description": "Enter a word, a phrase, or a Bible reference to find relevant verses." "description": "Enter a word, a phrase, or a Bible reference to find relevant verses."
} },
"copyVerse": "Copy verse",
"goTo": "Go to",
"addBookmark": "Add bookmark",
"removeBookmark": "Remove bookmark"
} }
}, },
"auth": { "auth": {

View File

@@ -243,6 +243,14 @@
"empty": { "empty": {
"title": "Începe să cauți în Scriptură", "title": "Începe să cauți în Scriptură",
"description": "Introdu un cuvânt, o frază sau o referință biblică pentru a găsi versete relevante." "description": "Introdu un cuvânt, o frază sau o referință biblică pentru a găsi versete relevante."
},
"copyVerse": "Copiază versetul",
"goTo": "Mergi la",
"addBookmark": "Adaugă la favorite",
"removeBookmark": "Elimină din favorite",
"searchTypes": {
"anyWords": "Căutare generală",
"exactPhrase": "Căutare exactă"
} }
} }
}, },