import type { Metadata } from "next"; import { Inter, Open_Sans, Fira_Code } from "next/font/google"; import "./globals.css"; import LayoutWrapper from "./LayoutWrapper"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], weight: ["400", "500", "600"], }); const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], weight: ["700"], }); const firaCode = Fira_Code({ variable: "--font-fira-code", subsets: ["latin"], weight: ["400", "600"], }); export const metadata: Metadata = { title: "Aggios - Dashboard", description: "Plataforma SaaS para agĂȘncias digitais", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (