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

export const metadata: Metadata = {
  title: "BrandLxft | Your AI Co-Founder for Growth",
  description:
    "BrandLxft turns brand and market inputs into concrete growth opportunities, strategy, and next best actions.",
};

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