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

export const metadata: Metadata = {
  title: "Karma Group Chatbot",
  description: "Next.js 14 Chatbot using Tailwind + TypeScript",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en">
      <head>
        <link
          rel="stylesheet"
          href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"
        />
      </head>
      <body className="bg-[#050816] text-white">{children}</body>
    </html>
  );
}
