Files
Claude Assistant 1257e9bdf7 Fix Next.js 15 Suspense boundary errors and remove Docker files
- Add Suspense boundaries for useSearchParams in bible and search pages
- Extract search page content to separate component for proper client-side rendering
- Remove all Docker configuration files and temp documentation
- Build now passes successfully without TypeScript or Suspense errors

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-22 14:26:23 +00:00

10 lines
222 B
TypeScript

import { Suspense } from 'react'
import SearchContent from './search-content'
export default function SearchPage() {
return (
<Suspense fallback={<div>Loading...</div>}>
<SearchContent />
</Suspense>
)
}