import './index.css';

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <head>
        <title>Agendivo</title>
        <meta name="description" content="Migrated Agendivo app" />
      </head>
      <body>{children}</body>
    </html>
  );
}
