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

export const metadata: Metadata = {
  title: "Auto Appointment Serial Management System | 5-Serial Daily Automation",
  description: "Authorized web-based appointment and serial booking management system with configurable 5-serial daily workflow and 1-minute interval dispatcher.",
};

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