import type { ReactNode } from "react";

import "./globals.css";
import { RefineRoot } from "../providers/refine-root";

export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="vi">
      <body className="min-h-screen bg-[#eef1f8] text-gray-900 antialiased">
        <RefineRoot>{children}</RefineRoot>
      </body>
    </html>
  );
}

