import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import "./globals.css";

const inter = Manrope({ subsets: ["latin"] });

export const metadata: Metadata = {
  title: "Prejee",
  description: "The Future of Agentic Learning. The Interactive Tutor that knows you. Prejee is reinventing education with AI-driven personalized learning experiences. Bringing you interactive, multimodal learning that adapts to your unique needs.",
  keywords: "Prejee, agentic, learning, artificial intelligence, JEE, NEET, JEE Mains, JEE Advanced, IELTS, entrance exams, college,open notes,open note,open notes app,note taking,digital notes,learning tool,interactive notes, affordable education, AI",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body className={inter.className}>{children}</body>
    </html>
  );
}
