import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "@/styles/globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Hugger Lover", description: "Give some love to your favorite Hugging Face user! ❤️", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (