Merge version_1 into main #1
@@ -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"
|
||||
/>
|
||||
</div>
|
||||
@@ -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",
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${montserrat.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -107,7 +107,7 @@ const HomePage = () => {
|
||||
{
|
||||
title: "Chapter-Based Organization",
|
||||
description: "All 15 CBSE Class 10 Math chapters neatly organized with real numbers, polynomials, triangles, quadratic equations, and more.",
|
||||
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=1",
|
||||
imageAlt: "Mathematics chapters overview",
|
||||
buttonIcon: BookMarked,
|
||||
buttonHref: "/practice",
|
||||
@@ -115,7 +115,7 @@ const HomePage = () => {
|
||||
{
|
||||
title: "Practice Questions by Year",
|
||||
description: "Access questions from 2015 to 2026. Each question tagged with the year it appeared on board exams for authentic exam preparation.",
|
||||
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=1",
|
||||
imageAlt: "Practice questions organized by year",
|
||||
buttonIcon: FileText,
|
||||
buttonHref: "/practice",
|
||||
@@ -123,7 +123,7 @@ const HomePage = () => {
|
||||
{
|
||||
title: "Difficulty-Level Filtering",
|
||||
description: "Categorize questions into Easy, Medium, and Hard. Start with basics and gradually build your problem-solving skills.",
|
||||
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=2",
|
||||
imageAlt: "Difficulty level filtering system",
|
||||
buttonIcon: Filter,
|
||||
buttonHref: "/practice",
|
||||
@@ -131,7 +131,7 @@ const HomePage = () => {
|
||||
{
|
||||
title: "Progress Tracking",
|
||||
description: "Monitor your completion percentage across chapters. Track which topics need more practice with visual progress indicators.",
|
||||
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=1",
|
||||
imageAlt: "Progress tracking dashboard",
|
||||
buttonIcon: TrendingUp,
|
||||
buttonHref: "/practice",
|
||||
|
||||
@@ -87,7 +87,7 @@ const PracticePage = () => {
|
||||
{
|
||||
title: "Year-Wise Practice Sets",
|
||||
description: "Access complete question sets from 2015 to 2026. Practice with actual board exam questions and understand exam patterns.",
|
||||
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=5",
|
||||
imageAlt: "Practice questions organized by year",
|
||||
buttonIcon: FileText,
|
||||
buttonHref: "/practice",
|
||||
@@ -95,7 +95,7 @@ const PracticePage = () => {
|
||||
{
|
||||
title: "Difficulty Level Progression",
|
||||
description: "Start with Easy questions to build confidence, move to Medium for skill development, and tackle Hard problems to master concepts.",
|
||||
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=6",
|
||||
imageAlt: "Difficulty level filtering system",
|
||||
buttonIcon: Filter,
|
||||
buttonHref: "/practice",
|
||||
@@ -103,7 +103,7 @@ const PracticePage = () => {
|
||||
{
|
||||
title: "Track Your Improvement",
|
||||
description: "Monitor your progress with detailed analytics. See which topics you've mastered and where you need more practice.",
|
||||
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=3",
|
||||
imageAlt: "Progress tracking dashboard",
|
||||
buttonIcon: TrendingUp,
|
||||
buttonHref: "/practice",
|
||||
|
||||
Reference in New Issue
Block a user