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

export const metadata: Metadata = {
  title: "BUILDFLOW-CM | Construction Management Platform",
  description:
    "Estimate, manage projects, track costs, connect the field, and grow your construction company from one platform.",
};

export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  return (
    <html lang="en">
      <body>{children}</body>
    </html>
  );
}
