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

const geistSans = { variable: "" };
const geistMono = { variable: "" };

export const metadata: Metadata = {
  title: "BECS — Best Engineering Construction & Suppliers | Infrastructure, Civil & Energy Works",
  description:
    "Best Engineering Construction And Suppliers Pvt. Ltd. (BECS) is a Nepal-based infrastructure development company delivering civil engineering, construction, hydropower, roads, bridges, buildings, water resources, and energy projects across Nepal.",
  keywords: [
    "BECS",
    "Best Engineering Construction and Suppliers",
    "construction company Nepal",
    "civil engineering Nepal",
    "infrastructure development Nepal",
    "hydropower construction Nepal",
    "road and bridge construction",
    "building construction Kathmandu",
    "project management Nepal",
    "EIA IEE Nepal",
  ],
  authors: [{ name: "BECS Pvt. Ltd." }],
  icons: {
    icon: "/favicon.svg",
  },
  openGraph: {
    title: "BECS — Best Engineering Construction & Suppliers",
    description:
      "Infrastructure, civil engineering and energy construction company in Nepal. Building the foundation of progress.",
    url: "https://becs.com.np",
    siteName: "BECS",
    type: "website",
  },
  twitter: {
    card: "summary_large_image",
    title: "BECS — Best Engineering Construction & Suppliers",
    description:
      "Infrastructure, civil engineering and energy construction company in Nepal.",
  },
};

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