medication-ai / src /app /layout.tsx
fullstuckdev
fix metadata
52f7c56
raw
history blame contribute delete
394 Bytes
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>
)
}