From a26f8eebca11dd26dc22bf45650f32ff28b7ca85 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:12:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 36 +++++++++++------------------------- 1 file changed, 11 insertions(+), 25 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ebbac70..370c508 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,40 +1,26 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Nest & Nurture Playschool | Premium Early Childhood Education in Chennai", - description: "Nest & Nurture offers safe, structured early childhood education for children aged 1.5–5 years in Perambur, Chennai. Programs include Playgroup, Nursery, LKG, and UKG with experienced educators.", - keywords: "playschool Chennai, nursery school Perambur, preschool education, early childhood learning, kindergarten Chennai, safe playschool", - metadataBase: new URL("https://www.nestandn.com"), + title: "Nest & Nurture Playschool | Premium Early Childhood Education in Chennai", description: "Nest & Nurture offers safe, structured early childhood education for children aged 1.5–5 years in Perambur, Chennai. Programs include Playgroup, Nursery, LKG, and UKG with experienced educators.", keywords: "playschool Chennai, nursery school Perambur, preschool education, early childhood learning, kindergarten Chennai, safe playschool", metadataBase: new URL("https://www.nestandn.com"), alternates: { - canonical: "https://www.nestandn.com", - }, + canonical: "https://www.nestandn.com"}, openGraph: { - title: "Nest & Nurture Playschool | Premium Early Childhood Education", - description: "Building strong foundations for your child's future through structured learning, nurturing care, and a safe environment.", - url: "https://www.nestandn.com", - siteName: "Nest & Nurture Playschool", - type: "website", - images: [ + title: "Nest & Nurture Playschool | Premium Early Childhood Education", description: "Building strong foundations for your child's future through structured learning, nurturing care, and a safe environment.", url: "https://www.nestandn.com", siteName: "Nest & Nurture Playschool", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg", - alt: "Nest & Nurture Playschool Campus", - }, + url: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg", alt: "Nest & Nurture Playschool Campus"}, ], }, twitter: { - card: "summary_large_image", - title: "Nest & Nurture Playschool | Premium Preschool in Chennai", - description: "Safe, structured early education for children 1.5–5 years. Visit us today!", - images: ["http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg"], + card: "summary_large_image", title: "Nest & Nurture Playschool | Premium Preschool in Chennai", description: "Safe, structured early education for children 1.5–5 years. Visit us today!", images: ["http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg"], }, robots: { index: true, @@ -50,7 +36,7 @@ export default function RootLayout({ return ( - + {children} @@ -1424,4 +1410,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}