diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b66eb60..bd5bf3b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "EdLearn - Convert Topics Into Structured Lessons & Interactive Quizzes", description: "Transform any topic into comprehensive lessons with diagrams, videos, quizzes, and class reminders. Master new subjects faster with EdLearn's AI-powered learning platform.", keywords: "AI learning platform, structured lessons, interactive quizzes, educational technology, class reminders, learning platform, edtech", metadataBase: new URL("https://edlearn.example.com"), - alternates: { - canonical: "https://edlearn.example.com"}, - openGraph: { - title: "EdLearn - Transform Learning Into Structured Success", description: "Create instant structured lessons from any topic with diagrams, videos, quizzes and reminders.", url: "https://edlearn.example.com", siteName: "EdLearn", type: "website"}, - twitter: { - card: "summary_large_image", title: "EdLearn - Instant Structured Learning", description: "Convert topics into complete lessons with diagrams, videos, quizzes and smart reminders."}, - robots: { - index: true, - follow: true, - }, -}; + title: "EdLearn - Transform Topics Into Structured Lessons", description: "Enter any topic and EdLearn instantly converts it into a comprehensive lesson with diagrams, interactive quizzes, explainer videos, and class reminders."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}