diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6713378..17c6951 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,18 +6,50 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Indigo Academics - Math Tutoring for Grades 3-10", + description: "Student-founded math tutoring for Grades 3-10 (Pre-Algebra, Algebra 1, Algebra 2, Geometry). Affordable one-on-one and group sessions. Book your free 30-min trial today.", + keywords: "math tutoring, algebra help, geometry tutoring, high school tutors, near-peer tutoring, affordable math help, student tutors", + metadataBase: new URL("https://indigoaacademics.com"), + alternates: { + canonical: "https://indigoaacademics.com", + }, + openGraph: { + title: "Indigo Academics - Math Tutoring for Grades 3-10", + description: "Expert math tutoring from high-achieving high school students. Affordable, relatable, results-driven. Book your free trial today.", + url: "https://indigoaacademics.com", + siteName: "Indigo Academics", + type: "website", + images: [ + { + url: "https://indigoaacademics.com/og-image.jpg", + alt: "Indigo Academics math tutoring", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Indigo Academics - Math Tutoring", + description: "Expert math tutoring from high-achieving students. Pre-Algebra through Geometry. Book free trial.", + images: ["https://indigoaacademics.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -26,7 +58,9 @@ export default function RootLayout({ return ( - + {children}