Implemented comprehensive Romanian Biblical Guide web app: - Next.js 15 with App Router and TypeScript - Material UI 7.3.2 for modern, responsive design - PostgreSQL database with Prisma ORM - Complete Bible reader with book/chapter navigation - AI-powered biblical chat with Romanian responses - Prayer wall for community prayer requests - Advanced Bible search with filters and highlighting - Sample Bible data imported from API.Bible - All API endpoints created and working - Professional Material UI components throughout - Responsive layout with navigation and theme 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
537 B
TypeScript
24 lines
537 B
TypeScript
import './globals.css'
|
|
import type { Metadata } from 'next'
|
|
import { MuiThemeProvider } from '@/components/providers/theme-provider'
|
|
|
|
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}
|
|
</MuiThemeProvider>
|
|
</body>
|
|
</html>
|
|
)
|
|
} |