import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Sidebar } from "@/components/layout/Sidebar"; import { TopBar } from "@/components/layout/TopBar"; import { Toaster } from "@/components/ui/sonner"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); export const metadata: Metadata = { title: "LeadFlow — Lead Generation Platform", description: "Unified lead generation and email enrichment platform", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (
{children}
); }