import type { Metadata } from "next"; import "./globals.css"; import { Roboto } from "next/font/google"; export const metadata: Metadata = { title: "Pangolin", description: "", }; const font = Roboto({ subsets: ["latin"], style: "normal", weight: "400" }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (