import { isRunningLocally } from "@/utils/features";
import "./globals.css";
import type { Metadata } from "next";
import { Geist } from "next/font/google";

const geist = Geist({ subsets: ["latin"] });

export const metadata: Metadata = {
  title: "EventCatalog Studio",
  description: "Design and collaborate on architecture diagrams and designs",
};

export default async function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en" data-is-running-locally={isRunningLocally()}>
      <body className={geist.className}>{children}</body>
    </html>
  );
}
