import type { Metadata } from "next"; import { Inter, Poppins } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const poppins = Poppins({ weight: ["500", "600", "700"], subsets: ["latin"], variable: "--font-poppins", }); export const metadata: Metadata = { title: "Nemia - Master Anything with Focus", description: "Nemia helps you focus and learn faster.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}