import type { Metadata } from "next"; import { Lato, Inter } from "next/font/google"; import "./globals.css"; const lato = Lato({ weight: ["300", "400", "700", "900"], subsets: ["latin"], variable: "--font-lato", }); const inter = Inter({ subsets: ["latin"], variable: "--font-inter", }); export const metadata: Metadata = { title: "Da Next Agency", description: "Created by Omukk", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }