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

export const metadata: Metadata = {
  title: "sigueobras.cl — Seguimiento de Obras de Construcción",
  description: "Plataforma multi-rol de seguimiento de obras de construcción en Chile. Control de planos, RFIs, fotos, reuniones y trazabilidad.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="es" className="dark">
      <body className="antialiased bg-slate-950 text-slate-100 min-h-screen selection:bg-sky-500 selection:text-white">
        {children}
      </body>
    </html>
  );
}
