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

export const metadata: Metadata = {
  title: "CALCC – China-ASEAN Legal Cooperation Center",
  description:
    "Bridging legal systems across China and ASEAN — facilitating cooperation, knowledge exchange, and legal excellence in the region.",
  keywords: "CALCC, China ASEAN legal cooperation, legal center, Kuala Lumpur, international law",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <head>
        <link rel="preconnect" href="https://fonts.googleapis.com" />
        <link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
        <link
          href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap"
          rel="stylesheet"
        />
      </head>
      <body className="antialiased">{children}</body>
    </html>
  );
}
