import { Inter } from "next/font/google"; import { GoogleAnalytics } from "@next/third-parties/google"; import { ClerkProvider} from "@clerk/nextjs"; import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "EstudiFlash", description: "AI generated flashcards to help you study smarter, not harder.", icons: { icon: "R.png", }, }; export default function RootLayout({ children }) { return ( {children} ) }