diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..8cb7bcf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } 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 { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Learninglee | Transforming Education in Jammu & Kashmir", + description: "Learninglee empowers underserved children through grassroots education programs. Donate, volunteer, or partner to support our mission for educational equity and generational change.", + keywords: "NGO education Jammu Kashmir, child education programs, educational charity, literacy programs, child safety, education impact", + metadataBase: new URL("https://learninglee.org"), + alternates: { + canonical: "https://learninglee.org", + }, + openGraph: { + title: "Learninglee | Every Child Deserves to Learn", + description: "Join our movement to transform education and create lasting impact in Jammu & Kashmir communities.", + url: "https://learninglee.org", + siteName: "Learninglee", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/teacher-helping-her-pupil-with-her-homework_329181-10526.jpg", + alt: "Learninglee educational programs transforming lives", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Learninglee | Every Child Deserves to Learn", + description: "Transforming education in Jammu & Kashmir through grassroots, community-led programs.", + images: ["http://img.b2bpic.net/free-photo/teacher-helping-her-pupil-with-her-homework_329181-10526.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}