From 3bf527c98155cc1213217096c1bcc9f9c6e24725 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 18:39:03 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 541de84..0b1ebe2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -18,7 +18,8 @@ import { GraduationCap } from "lucide-react"; const navItems = [ { name: "Home", id: "/" }, { name: "About", id: "/#about" }, - { name: "Services", id: "/services" }, // Link to the new Services page + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, // New link added { name: "Instructors", id: "/#instructors" }, { name: "Testimonials", id: "/#testimonials" }, { name: "FAQ", id: "/#faq" } @@ -33,6 +34,7 @@ const footerColumns = [ title: "Quick Links", items: [ { label: "About Us", href: "/#about" }, { label: "Services", href: "/services" }, // Updated link + { label: "Pricing", href: "/pricing" }, // New link added { label: "Instructors", href: "/#instructors" }, { label: "Testimonials", href: "/#testimonials" } ] @@ -85,7 +87,7 @@ export default function LandingPage() { description="Expert-led courses in Termiz designed to strengthen fundamentals and prepare students for academic excellence." buttons={[ { - text: "Explore Our Courses", href: "/services#services-courses"}, // Link to courses section on the Services page + text: "Explore Our Courses", href: "/services#services-courses"}, ]} imageSrc="http://img.b2bpic.net/free-photo/multiethnic-scholars-library-engaged-remote-learning-with-their-mentor_482257-119542.jpg" imageAlt="Diverse group of students happily studying mathematics in a bright classroom." @@ -274,4 +276,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 80078b63ae9470a39f95c0eaf8c3c314d95826f8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 18:39:04 +0000 Subject: [PATCH 2/2] Add src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 115 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 src/app/pricing/page.tsx diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx new file mode 100644 index 0000000..57ef0f6 --- /dev/null +++ b/src/app/pricing/page.tsx @@ -0,0 +1,115 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import PricingCardThree from '@/components/sections/pricing/PricingCardThree'; +import { Check } from "lucide-react"; + +// Define navigation items and footer columns once for consistency across pages +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Services", id: "/services" }, + { name: "Pricing", id: "/pricing" }, // New link added + { name: "Instructors", id: "/#instructors" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" } +]; + +const navbarButton = { + text: "Enroll Now", href: "/services#enroll-now" // Link to the enrollment section on the Services page +}; + +const footerColumns = [ + { + title: "Quick Links", items: [ + { label: "About Us", href: "/#about" }, + { label: "Services", href: "/services" }, + { label: "Pricing", href: "/pricing" }, // New link added + { label: "Instructors", href: "/#instructors" }, + { label: "Testimonials", href: "/#testimonials" } + ] + }, + { + title: "Support", items: [ + { label: "FAQ", href: "/#faq" }, + { label: "Contact Us", href: "/#contact" }, + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" } + ] + }, + { + title: "Location", items: [ + { label: "Termiz, Uzbekistan", href: "#" }, + { label: "info@mathcenter.uz", href: "mailto:info@mathcenter.uz" }, + { label: "+998 90 123 4567", href: "tel:+998901234567" } + ] + } +]; + +export default function PricingPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} -- 2.49.1