From 248d35d0c28755ee0b8c459f8099720f1bc9c36e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:55:32 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6b65e2c..a9cabef 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -93,21 +93,21 @@ export default function AboutPage() { id: 1, title: "Relatable Teaching", description: "Your tutor was recently where you are. They remember the hard parts and explain concepts in ways that click.", - imageSrc: "http://img.b2bpic.net/free-photo/teenage-students-sitting-table-reading-book_23-2148166392.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/teenage-students-sitting-table-reading-book_23-2148166392.jpg?_wi=4", imageAlt: "Math tutoring session with high school tutors", }, { id: 2, title: "Affordable & Accessible", description: "High-quality instruction without premium price tags. We reinvest in our tutors and pass savings to families.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-46934.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-kids-elementary-school_53876-46934.jpg?_wi=4", imageAlt: "Group tutoring class", }, { id: 3, title: "Flexible Scheduling", description: "Tutoring that fits your life. Choose one-on-one or group, schedule around school and activities, learn at your pace.", - imageSrc: "http://img.b2bpic.net/free-photo/colleagues-taking-selfie-together-group-study_23-2149211091.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/colleagues-taking-selfie-together-group-study_23-2149211091.jpg?_wi=4", imageAlt: "Student founders team", }, ]} From 6ac6ba8b54fc8be6ec1bf7fb25b59d1f4dfe5ba2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:55:33 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3ee9c4e..188f9cf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -71,7 +71,7 @@ export default function ContactPage() { title="Get in Touch" description="Have questions about our tutoring services? Reach out to us directly. We're here to help you find the perfect learning solution." useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/young-man-talking-cellphone-while-working-laptop_23-2148187181.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-man-talking-cellphone-while-working-laptop_23-2148187181.jpg?_wi=3" imageAlt="Contact Indigo Academics" mediaAnimation="slide-up" mediaPosition="right" From 75b80b8e4bb6244c80e80ff4e08fbda8289e2831 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 21:55:33 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) 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}