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

export const metadata: Metadata = {
  title: "Auto Appointment Manager — cPanel Installer & Download",
  description:
    "Complete Auto Appointment Serial Management system. Browser-based PHP installer for cPanel + separate Node.js/Playwright automation worker.",
};

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