import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import ErrorBoundary from "@/components/ErrorBoundary"; import { ThemeProvider } from "@/components/theme-provider"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "kv-pix | AI Image Generator", description: "Generate images with Google ImageFX (Whisk)", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (