diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..86df192 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,43 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Libre_Baskerville } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "LearnHub - Online Learning Platform", + description: "Secure access to professional video courses. Log in with your email and license key to access comprehensive learning materials.", + keywords: "online learning, video courses, education platform, professional development", + openGraph: { + title: "LearnHub - Online Learning Platform", + description: "Access professional video courses and enhance your skills", + siteName: "LearnHub", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "LearnHub - Online Learning Platform", + description: "Secure online learning with professional video courses", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +46,9 @@ export default function RootLayout({ return ( - + {children}