- Add pgvector support with bible_passages table for vector search - Create Python ingestion script for Azure OpenAI embed-3 embeddings - Implement hybrid search combining vector similarity and full-text search - Update AI chat to use vector search with Azure OpenAI gpt-4o - Add floating chat component with Material UI design - Import complete Romanian Bible (FIDELA) with 30K+ verses - Add vector search library for semantic Bible search - Create multi-language implementation plan for future expansion 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
623 B
TypeScript
26 lines
623 B
TypeScript
import './globals.css'
|
|
import type { Metadata } from 'next'
|
|
import { MuiThemeProvider } from '@/components/providers/theme-provider'
|
|
import FloatingChat from '@/components/chat/floating-chat'
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Ghid Biblic - Biblical Guide',
|
|
description: 'A comprehensive Bible study application with AI chat capabilities',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="ro">
|
|
<body>
|
|
<MuiThemeProvider>
|
|
{children}
|
|
<FloatingChat />
|
|
</MuiThemeProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
} |