export const metadata = {
  title: 'Kgosi Mabe Foundation',
  description: 'The Kgosi M.E Mabe -O-Molopyane Foundation is a community-driven organization based in Mabeskraal, a village in the Bojanala West District Municipality within the Moses Kotane Local Municipality',
}

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  )
}
