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

export const metadata: Metadata = {
  metadataBase: new URL("https://teambuildingkl.com"),
  title: "Team Building KL | Corporate Team Experiences in Malaysia",
  description: "Purposeful corporate team building programmes in Kuala Lumpur, Selangor, Raub, Penang and Langkawi. Custom programmes for teams of 20 to 500+.",
  icons: { icon: "/favicon.svg", shortcut: "/favicon.svg" },
  openGraph: {
    title: "Stronger teams start out here.",
    description: "Purposeful corporate team experiences across KL, Selangor, Raub, Penang and Langkawi.",
    type: "website",
    images: [{ url: "/og.png", width: 1200, height: 630, alt: "Team Building KL — Stronger teams start out here" }],
  },
  twitter: {
    card: "summary_large_image",
    title: "Stronger teams start out here.",
    description: "Purposeful corporate team experiences across Malaysia.",
    images: ["/og.png"],
  },
};

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