Spaces:
Sleeping
Sleeping
| import Providers from './providers' | |
| export const metadata = { | |
| title: 'Sistem Rekomendasi Obat', | |
| description: 'Sistem rekomendasi obat berbasis AI untuk membantu tenaga kesehatan', | |
| } | |
| export default function RootLayout({ | |
| children, | |
| }: { | |
| children: React.ReactNode | |
| }) { | |
| return ( | |
| <html lang="id"> | |
| <body> | |
| <Providers>{children}</Providers> | |
| </body> | |
| </html> | |
| ) | |
| } | |