import type { Metadata } from "next"; import { Inter, EB_Garamond } from "next/font/google"; import "./globals.css"; import { Providers } from "@/components/providers"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const ebGaramond = EB_Garamond({ variable: "--font-eb-garamond", subsets: ["latin"], weight: ["400", "500", "600", "700"], }); export const metadata: Metadata = { title: "Mike - AI Legal Platform", description: "AI-powered legal document analysis and contract review platform.", icons: { icon: [ { url: "/icon.svg", type: "image/svg+xml" }, { url: "/favicon.ico" }, ], apple: "/apple-touch-icon.png", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (