From db0af9c5875f950450f20fbc4a8d87d293ccc2b9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 21:24:32 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..afbfce5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Genius In You - Educational Excellence & Test Prep", + description: "Unlock your potential with Genius In You. Expert tutoring in public speaking, test preparation, and academic enrichment. 85% of our students succeed.", + keywords: "tutoring, test preparation, public speaking, academic enrichment, TJHSST prep, AET prep, AOS prep", + metadataBase: new URL("https://geniusinyou.com"), + alternates: { + canonical: "https://geniusinyou.com", + }, + openGraph: { + title: "Genius In You - Unlock Your Potential", + description: "Empowering students with confidence, communication, and academic excellence", + url: "https://geniusinyou.com", + siteName: "Genius In You", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/team-meeting-startups_23-2148898711.jpg", + alt: "Genius In You - Educational Excellence", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Genius In You - Unlock Your Potential", + description: "Empowering students with confidence, communication, and academic excellence", + images: ["http://img.b2bpic.net/free-photo/team-meeting-startups_23-2148898711.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}