diff --git a/src/app/chapters/page.tsx b/src/app/chapters/page.tsx index 2213c82..678c249 100644 --- a/src/app/chapters/page.tsx +++ b/src/app/chapters/page.tsx @@ -89,7 +89,7 @@ export default function ChaptersPage() { { text: "Back to Home", href: "/" }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/top-view-school-supplies-composition_23-2148913533.jpg" + imageSrc="http://img.b2bpic.net/free-photo/top-view-school-supplies-composition_23-2148913533.jpg?_wi=2" imageAlt="Mathematics chapters overview" /> @@ -108,7 +108,7 @@ export default function ChaptersPage() { { title: "Real Numbers", description: "Euclidean algorithm, fundamental theorem of arithmetic, rational and irrational numbers, and decimal expansions.", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-school-supplies-composition_23-2148913533.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/top-view-school-supplies-composition_23-2148913533.jpg?_wi=3", imageAlt: "Real numbers and number systems", buttonIcon: BookMarked, buttonHref: "/practice", @@ -116,7 +116,7 @@ export default function ChaptersPage() { { title: "Polynomials & Quadratic Equations", description: "Degree of polynomials, zeros, factor theorem, quadratic equations, discriminant, and nature of roots.", - imageSrc: "http://img.b2bpic.net/free-photo/studying-girl-classroom_23-2147666450.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/studying-girl-classroom_23-2147666450.jpg?_wi=3", imageAlt: "Polynomials and equations", buttonIcon: FileText, buttonHref: "/practice", @@ -124,7 +124,7 @@ export default function ChaptersPage() { { title: "Triangles & Geometry", description: "Triangle congruence, similarity, Pythagoras theorem, coordinate geometry, and construction fundamentals.", - imageSrc: "http://img.b2bpic.net/free-photo/studying-girl-classroom_23-2147666450.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/studying-girl-classroom_23-2147666450.jpg?_wi=4", imageAlt: "Geometry and triangles", buttonIcon: Filter, buttonHref: "/practice", @@ -132,7 +132,7 @@ export default function ChaptersPage() { { title: "Trigonometry & Applications", description: "Trigonometric ratios, identities, complementary angles, heights and distances, and real-world applications.", - imageSrc: "http://img.b2bpic.net/free-vector/nps-infographic-design-template_23-2149916586.jpg", + imageSrc: "http://img.b2bpic.net/free-vector/nps-infographic-design-template_23-2149916586.jpg?_wi=2", imageAlt: "Trigonometry concepts", buttonIcon: BookMarked, buttonHref: "/practice", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..bfbc04f 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 { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Class 10 Maths PYQ Hub - CBSE Previous Year Questions", + description: "Complete collection of CBSE Class 10 Mathematics previous year questions (2015-2026). Practice organized by chapter, difficulty level, and year. Prepared by Dhananjay Kushwaha.", + keywords: "Class 10 Maths, PYQ, CBSE board exam, previous year questions, mathematics practice, board exam preparation", + metadataBase: new URL("https://class10mathspyqhub.com"), + alternates: { + canonical: "https://class10mathspyqhub.com", + }, + openGraph: { + title: "Class 10 Maths PYQ Hub", + description: "Master CBSE Class 10 Mathematics with curated previous year questions, organized by chapter and difficulty level.", + url: "https://class10mathspyqhub.com", + siteName: "Class 10 Maths PYQ Hub", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/hands-writing-calculations-desktop-with-notebooks_23-2147844737.jpg", + alt: "Class 10 Mathematics PYQ Hub", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Class 10 Maths PYQ Hub", + description: "Complete CBSE Class 10 Mathematics previous year questions for exam preparation", + images: ["http://img.b2bpic.net/free-photo/hands-writing-calculations-desktop-with-notebooks_23-2147844737.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}