Update src/app/layout.tsx
This commit is contained in:
@@ -1,40 +1,26 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
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: "Twinkle Mind Online Academy - Interactive Math, Languages & Sanskrit",
|
||||
description: "Interactive enrichment classes for math, Sanskrit, Hindi & Spanish. Patient teachers, ADHD-friendly, dyslexia-aware for kids 6-12 and adults.",
|
||||
keywords: "online academy, math tutoring, language learning, Sanskrit, Hindi, Spanish, interactive learning, ADHD friendly, dyslexia support, enrichment education",
|
||||
metadataBase: new URL("https://www.twinklemindacademy.com"),
|
||||
title: "Twinkle Mind Online Academy - Interactive Math, Languages & Sanskrit", description: "Interactive enrichment classes for math, Sanskrit, Hindi & Spanish. Patient teachers, ADHD-friendly, dyslexia-aware for kids 6-12 and adults.", keywords: "online academy, math tutoring, language learning, Sanskrit, Hindi, Spanish, interactive learning, ADHD friendly, dyslexia support, enrichment education", metadataBase: new URL("https://www.twinklemindacademy.com"),
|
||||
alternates: {
|
||||
canonical: "https://www.twinklemindacademy.com",
|
||||
},
|
||||
canonical: "https://www.twinklemindacademy.com"},
|
||||
openGraph: {
|
||||
title: "Twinkle Mind Online Academy - Learning is Fun",
|
||||
description: "Master math, languages, and Sanskrit through interactive, inclusive classes designed for every learner.",
|
||||
url: "https://www.twinklemindacademy.com",
|
||||
siteName: "Twinkle Mind Online Academy",
|
||||
type: "website",
|
||||
images: [
|
||||
title: "Twinkle Mind Online Academy - Learning is Fun", description: "Master math, languages, and Sanskrit through interactive, inclusive classes designed for every learner.", url: "https://www.twinklemindacademy.com", siteName: "Twinkle Mind Online Academy", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg",
|
||||
alt: "Twinkle Mind Online Academy - Interactive Learning",
|
||||
},
|
||||
url: "http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg", alt: "Twinkle Mind Online Academy - Interactive Learning"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Twinkle Mind Online Academy",
|
||||
description: "Interactive enrichment education for math, languages & Sanskrit—ADHD & dyslexia friendly.",
|
||||
images: ["http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg"],
|
||||
card: "summary_large_image", title: "Twinkle Mind Online Academy", description: "Interactive enrichment education for math, languages & Sanskrit—ADHD & dyslexia friendly.", images: ["http://img.b2bpic.net/free-photo/young-woman-doing-speech-therapy-with-children_23-2149110284.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
@@ -51,7 +37,7 @@ export default function RootLayout({
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunito.variable} antialiased`}
|
||||
className={`${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
@@ -1426,4 +1412,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user