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

export const metadata: Metadata = {
  title: "Young Engineers Chatbot Widget",
  description: "Floating AI chatbot widget with category selection and streaming-style UI"
};

export default function RootLayout({
  children
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <body className="min-h-screen bg-slate-100 text-slate-900 antialiased">
        {children}
      </body>
    </html>
  );
}
