Update src/app/layout.tsx

This commit is contained in:
2026-03-03 18:12:57 +00:00
parent 73b2d76d9b
commit a26f8eebca

View File

@@ -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.55 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.55 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.55 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.55 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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body className={`${poppins.variable} antialiased`}>
<Tag />
{children}
@@ -1424,4 +1410,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}