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

export const metadata: Metadata = {
  title: "TimeChat — Log hours via Telegram. PDF invoices on the 1st.",
  description: "Freelancer time tracker via Telegram natural language. End of month: auto-PDF invoice to client. $7/mo.",
};

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