import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./style/app.css";
import { Toaster } from "sonner";
const geistSans = Geist({
  variable: "--font-geist-sans",
  subsets: ["latin"],
});

const geistMono = Geist_Mono({
  variable: "--font-geist-mono",
  subsets: ["latin"],
});

export const metadata: Metadata = {
  title: "Sphere Admin Pannel",
  description: "Manage AI Agent Support bot",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html className="dark" dir="rtl" lang="fa">
      <body
        className={`${geistSans.variable} ${geistMono.variable} antialiased`}
      >

        <Toaster />
        {children}
      </body>
    </html>
  );
}