Merge version_5 into main #5

Merged
bender merged 2 commits from version_5 into main 2026-06-08 18:39:08 +00:00
2 changed files with 120 additions and 3 deletions

View File

@@ -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() {
</ReactLenis>
</ThemeProvider>
);
}
}

115
src/app/pricing/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumSmall"
sizing="medium"
background="circleGradient"
cardStyle="solid"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={navItems}
brandName="Mathematics Center"
button={navbarButton}
/>
</div>
<div id="pricing-hero" data-section="pricing-hero">
<PricingCardThree
animationType="slide-up"
textboxLayout="default"
title="Flexible Pricing Plans"
description="Choose the plan that best fits your student's learning needs and academic goals."
plans={[
{
id: "basic", badge: "Start Small", price: "$99", name: "Basic Math Boost", buttons: [{ text: "Get Started", href: "/#contact" }],
features: [
"8 hours of group tutoring/month", "Access to online practice tests", "Monthly progress reports", "Basic homework support"
]
},
{
id: "standard", badge: "Most Popular", badgeIcon: Check,
price: "$149", name: "Standard Academic Prep", buttons: [{ text: "Enroll Now", href: "/#contact" }],
features: [
"12 hours of group tutoring/month", "Full access to online resources", "Bi-weekly one-on-one check-ins", "Advanced homework support", "Exam strategy workshops"
]
},
{
id: "premium", badge: "Maximum Results", price: "$199", name: "Premium University Track", buttons: [{ text: "Contact for Custom", href: "/#contact" }],
features: [
"16 hours of group tutoring/month", "Personalized study plan development", "Weekly one-on-one mentorship", "University application guidance", "Mock exam simulations with feedback"
]
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Mathematics Center"
columns={footerColumns}
copyrightText="© 2024 Mathematics Center. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}