From 473da04b1f4299ebd7beff22909b0311fdbd5b79 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:34:42 +0000 Subject: [PATCH 1/2] Update src/app/chapters/page.tsx --- src/app/chapters/page.tsx | 48 ++++++++++----------------------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/src/app/chapters/page.tsx b/src/app/chapters/page.tsx index 678c249..1ea379c 100644 --- a/src/app/chapters/page.tsx +++ b/src/app/chapters/page.tsx @@ -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"}, ]} /> -- 2.49.1 From dac6b2564791442e7e49cb16a55ad8680345a5a8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 09:34:42 +0000 Subject: [PATCH 2/2] Add src/app/real-numbers/page.tsx --- src/app/real-numbers/page.tsx | 164 ++++++++++++++++++++++++++++++++++ 1 file changed, 164 insertions(+) create mode 100644 src/app/real-numbers/page.tsx diff --git a/src/app/real-numbers/page.tsx b/src/app/real-numbers/page.tsx new file mode 100644 index 0000000..8ba1de6 --- /dev/null +++ b/src/app/real-numbers/page.tsx @@ -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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}; + +export default RealNumbersPage; \ No newline at end of file -- 2.49.1