import "./globals.css";
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "63rd PMAP Annual Conference",
  description: "Powering the Next HR Shift"
};

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