import type { Metadata } from "next";
import "../styles/globals.css";
import "./scrollbar.css";
export const metadata: Metadata = {
  title: "Certification & Audit Platform",
  description: "Certification & Audit Platform",
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body suppressHydrationWarning>  {/* ✅ add this */}
        {children}
      </body>
    </html>
  );
}