import type { Metadata } from "next"

export const metadata: Metadata = {
  title: "HRMS",
  description: "HR Management System",
}

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <body style={{ margin: 0, padding: 0, fontFamily: "sans-serif" }}>
        {children}
      </body>
    </html>
  )
}