import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";

const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
  title: "AI Ally - Your Personal AI Assistant",
  description: "Experience the future of AI assistance with AI Ally. Get personalized help, instant responses, and intelligent solutions.",
};

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en" className="h-full">
      <body className={`${inter.className} min-h-screen bg-[#121212] text-white antialiased`}>
        {children}
      </body>
    </html>
  );
}
