Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-21 09:34:47 +00:00
2 changed files with 176 additions and 36 deletions

View File

@@ -19,8 +19,7 @@ export default function ChaptersPage() {
const footerColumns = [
{
title: "Navigation",
items: [
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Chapters", href: "/chapters" },
{ label: "Practice", href: "/practice" },
@@ -28,8 +27,7 @@ export default function ChaptersPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Download PDFs", href: "#" },
{ label: "CBSE Syllabus", href: "#" },
{ label: "Study Tips", href: "#" },
@@ -37,16 +35,14 @@ export default function ChaptersPage() {
],
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Phone: 8521893578", href: "tel:8521893578" },
{ label: "Email Support", href: "mailto:support@class10mathspyq.com" },
{ label: "Creator: Dhananjay Kushwaha", href: "#" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclaimer", href: "#" },
@@ -106,37 +102,17 @@ export default function ChaptersPage() {
useInvertedBackground={false}
features={[
{
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?_wi=3",
imageAlt: "Real numbers and number systems",
buttonIcon: BookMarked,
buttonHref: "/practice",
},
title: "Real Numbers", description: "Euclidean algorithm, fundamental theorem of arithmetic, rational and irrational numbers, and decimal expansions. MCQ question bank with 15 questions from 2026 to 2018 organized by year and difficulty level.", 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: "/real-numbers"},
{
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?_wi=3",
imageAlt: "Polynomials and equations",
buttonIcon: FileText,
buttonHref: "/practice",
},
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?_wi=3", imageAlt: "Polynomials and equations", buttonIcon: FileText,
buttonHref: "/practice"},
{
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?_wi=4",
imageAlt: "Geometry and triangles",
buttonIcon: Filter,
buttonHref: "/practice",
},
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?_wi=4", imageAlt: "Geometry and triangles", buttonIcon: Filter,
buttonHref: "/practice"},
{
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?_wi=2",
imageAlt: "Trigonometry concepts",
buttonIcon: BookMarked,
buttonHref: "/practice",
},
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?_wi=2", imageAlt: "Trigonometry concepts", buttonIcon: BookMarked,
buttonHref: "/practice"},
]}
/>
</div>

View File

@@ -0,0 +1,164 @@
"use client";
import Link from "next/link";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { BookOpen, HelpCircle, Mail } from "lucide-react";
const RealNumbersPage = () => {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Chapters", id: "chapters" },
{ name: "Practice", id: "practice" },
{ name: "About", id: "about" },
];
const footerColumns = [
{
title: "Navigation", items: [
{ label: "Home", href: "/" },
{ label: "Chapters", href: "/chapters" },
{ label: "Practice", href: "/practice" },
{ label: "About", href: "/about" },
],
},
{
title: "Resources", items: [
{ label: "Download PDFs", href: "#" },
{ label: "CBSE Syllabus", href: "#" },
{ label: "Study Tips", href: "#" },
{ label: "FAQs", href: "#faq" },
],
},
{
title: "Contact", items: [
{ label: "Phone: 8521893578", href: "tel:8521893578" },
{ label: "Email Support", href: "mailto:support@class10mathspyq.com" },
{ label: "Creator: Dhananjay Kushwaha", href: "#" },
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclaimer", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="smallMedium"
sizing="largeSmallSizeLargeTitles"
background="fluid"
cardStyle="gradient-radial"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Class 10 Maths PYQ Hub"
navItems={navItems}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="Real Numbers - CBSE Class 10 Mathematics MCQ Question Bank"
description="Master the Real Numbers chapter with 15 carefully selected multiple-choice questions from 2026 to 2018. Questions are organized by year and difficulty level (Easy, Medium, Hard) for progressive learning and exam preparation."
background={{ variant: "downward-rays-animated" }}
tag="Chapter 1: Real Numbers"
tagIcon={BookOpen}
tagAnimation="slide-up"
buttons={[
{ text: "Back to Chapters", href: "/chapters" },
{ text: "View All Practice", href: "/practice" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/top-view-school-supplies-composition_23-2148913533.jpg?_wi=1"
imageAlt="Real Numbers mathematics chapter"
/>
</div>
<div id="mcq-questions" data-section="mcq-questions">
<FaqBase
title="Real Numbers MCQ Question Bank (20262018)"
description="15 curated multiple-choice questions organized by year and difficulty level. Practice with actual CBSE board exam patterns."
tag="15 Questions"
tagIcon={BookOpen}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqsAnimation="slide-up"
faqs={[
{
id: "1", title: "2026 - Easy: Fundamental Theorem of Arithmetic", content: "Which of the following numbers is a product of exactly three distinct prime factors? (A) 30 (B) 42 (C) 60 (D) 70"},
{
id: "2", title: "2026 - Medium: Euclidean Algorithm", content: "Using the Euclidean algorithm, find HCF(272, 425). (A) 1 (B) 17 (C) 25 (D) 68"},
{
id: "3", title: "2026 - Hard: Irrational Numbers", content: "If √2 + √3 is irrational, and √6 is irrational, which statement is necessarily true? (A) √2 and √3 are both rational (B) √2 × √3 is rational (C) √2 and √3 are both irrational (D) Cannot be determined"},
{
id: "4", title: "2024 - Easy: Decimal Expansion", content: "Which of the following fractions will have a terminating decimal expansion? (A) 7/12 (B) 5/16 (C) 11/15 (D) 3/35"},
{
id: "5", title: "2024 - Medium: LCM and HCF", content: "If HCF(a, b) = 6 and LCM(a, b) = 120, and one number is 24, find the other number. (A) 30 (B) 40 (C) 50 (D) 60"},
{
id: "6", title: "2024 - Hard: Properties of Primes", content: "Which of the following statements about prime numbers is false? (A) 2 is the only even prime (B) All odd numbers are prime (C) Every integer greater than 1 is either prime or composite (D) The product of two primes is never prime"},
{
id: "7", title: "2022 - Easy: Rational Numbers", content: "Which of the following is a rational number? (A) π (B) √5 (C) 7/9 (D) √2"},
{
id: "8", title: "2022 - Medium: Divisibility Rules", content: "What is the remainder when 7^100 is divided by 6? (A) 0 (B) 1 (C) 4 (D) 5"},
{
id: "9", title: "2022 - Hard: Real Numbers Representation", content: "If a/b is a rational number in lowest terms (gcd(a,b)=1), and b has only prime factors 2 and 5, then its decimal expansion: (A) Is always terminating (B) Is always non-terminating (C) May be either (D) Has period 6"},
{
id: "10", title: "2020 - Easy: Prime Factorization", content: "The prime factorization of 360 is: (A) 2² ×× 5 (B) 2³ ×× 5 (C) 2² × 3 × 5² (D) 2³ × 3 × 5²"},
{
id: "11", title: "2020 - Medium: HCF Application", content: "The greatest number that divides 1050, 1410, and 1260 is: (A) 105 (B) 140 (C) 210 (D) 315"},
{
id: "12", title: "2020 - Hard: Continued Fractions", content: "Using the Euclidean algorithm, how many steps does it take to find HCF(1071, 462)? (A) 2 (B) 3 (C) 4 (D) 5"},
{
id: "13", title: "2018 - Easy: Natural Numbers", content: "Which number is not a natural number? (A) 0 (B) 1 (C) 100 (D) 999"},
{
id: "14", title: "2018 - Medium: Irrationality Proof", content: "To prove that √3 is irrational, we assume √3 = p/q where gcd(p,q) = 1. This leads to the conclusion that: (A) p is even (B) q is even (C) Both p and q are even (D) p² is divisible by 3"},
{
id: "15", title: "2018 - Hard: Number Theory", content: "If n is a positive integer such that n ≡ 1 (mod 6), then n² ≡ ? (mod 6) (A) 0 (B) 1 (C) 3 (D) 5"},
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Practice More Chapters"
tagIcon={Mail}
tagAnimation="slide-up"
title="Master All Real Numbers Concepts"
description="Complete all 15 questions above and then explore other chapters. Track your progress and strengthen your CBSE Mathematics preparation."
buttons={[
{ text: "View Other Chapters", href: "/chapters" },
{ text: "Contact Support", href: "mailto:support@class10mathspyq.com" },
]}
buttonAnimation="slide-up"
background={{ variant: "animated-grid" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
bottomLeftText="© 2024 Class 10 Maths PYQ Hub. All rights reserved."
bottomRightText="Prepared by Dhananjay Kushwaha | For CBSE Board Exam Preparation"
/>
</div>
</ThemeProvider>
);
};
export default RealNumbersPage;