import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import { Toaster } from "@/components/ui/toaster";

const inter = Inter({
  variable: "--font-inter",
  subsets: ["latin"],
  weight: ["200", "300", "400", "500", "600", "700", "800", "900"],
});

export const metadata: Metadata = {
  title: "Langkawi Legacy Sdn Bhd — Premier Destination Experience",
  description:
    "Langkawi Legacy is a premier destination experience company with Malaysian heritage, redefining adventure and authenticity across the Langkawi archipelago.",
  keywords: [
    "Langkawi",
    "Malaysia",
    "tourism",
    "island tours",
    "cultural heritage",
    "eco adventures",
    "luxury retreats",
  ],
  authors: [{ name: "Langkawi Legacy Sdn Bhd" }],
  openGraph: {
    title: "Langkawi Legacy Sdn Bhd",
    description:
      "Curating extraordinary journeys through Malaysia's finest archipelago since 2010.",
    type: "website",
  },
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body className={`${inter.variable} antialiased`}>
        {children}
        <Toaster />
      </body>
    </html>
  );
}
