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

export const metadata: Metadata = {
  title: "Nowills PMS · Reservation Dashboard",
  description:
    "Premium reservation workspace for the Nowills Hotel Management System.",
};

/**
 * Root layout is only used for framework-generated pages (e.g. 404).
 * The dashboard itself is pure HTML served from `src/app/route.ts`.
 */
export default function RootLayout({ children }: { children: ReactNode }) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}
