Files
biblical-guide.com/app/[locale]/bible/page.tsx
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
209 B
TypeScript

import { Suspense } from 'react'
import BibleReader from './reader'
export default function BiblePage() {
return (
<Suspense fallback={<div>Loading...</div>}>
<BibleReader />
</Suspense>
)
}