Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 612f2ba56e | |||
| aa541a643d | |||
| d31a8cf4e6 | |||
| cb6fdadc38 | |||
| 357e46d54e | |||
| 34e5315fbc | |||
| 7e0a7c96e9 | |||
| 80078b63ae | |||
| 3bf527c981 | |||
| bd356a19ab | |||
| c7dbc530ec | |||
| 433037ffad | |||
| aded6cf6f8 | |||
| 84f4281ffe | |||
| 5f2449ddf9 |
113
src/app/page.tsx
113
src/app/page.tsx
@@ -14,6 +14,48 @@ import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCa
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { GraduationCap } 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" }, // Updated link
|
||||
{ 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 LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
@@ -31,23 +73,9 @@ export default function LandingPage() {
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Courses", id: "#courses"},
|
||||
{
|
||||
name: "Instructors", id: "#instructors"},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
name: "FAQ", id: "#faq"},
|
||||
]}
|
||||
navItems={navItems}
|
||||
brandName="Mathematics Center"
|
||||
button={{
|
||||
text: "Enroll Now", href: "#contact"}}
|
||||
button={navbarButton}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -59,9 +87,9 @@ 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: "#courses"},
|
||||
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"
|
||||
imageSrc="https://img.b2bpic.net/free-vector/chalkboard-with-math-elements_1411-88.jpg?id=1159689"
|
||||
imageAlt="Diverse group of students happily studying mathematics in a bright classroom."
|
||||
avatars={[
|
||||
{
|
||||
@@ -99,7 +127,7 @@ export default function LandingPage() {
|
||||
description="At Mathematics Center, we believe in nurturing every student's potential through expert-led instruction and personalized support."
|
||||
subdescription="Our goal is to foster a deep understanding of mathematical concepts, build problem-solving skills, and instill confidence for academic and future success. We are dedicated to providing quality local tutoring that addresses individual learning styles."
|
||||
icon={GraduationCap}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/little-girl-sitting-table-with-books_1157-33749.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eqnsq6UMEdcjGqZ3rcskcJFd0y/uploaded-1780944991655-0bss0xph.jpg"
|
||||
imageAlt="Students and tutor working together on a math problem."
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -113,11 +141,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Foundation Building", description: "Strengthen core mathematical concepts from grades 6-9, focusing on algebra, geometry, and arithmetic.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-studying-math_23-2150444927.jpg", imageAlt: "Notebook with math formulas and a pen."},
|
||||
title: "National certificate preparation ", description: "Strengthen core mathematical concepts from grades 6-9, focusing on algebra, geometry, and arithmetic.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-people-studying-math_23-2150444927.jpg", imageAlt: "Notebook with math formulas and a pen."},
|
||||
{
|
||||
title: "Exam Preparation", description: "Intensive courses for students in grades 10-12 preparing for national exams and university admissions.", imageSrc: "http://img.b2bpic.net/free-photo/friends-people-group-teamwork-diversity_53876-31488.jpg", imageAlt: "Student taking an exam with a timer on the desk."},
|
||||
title: "SAT ", description: "Intensive courses for students in grades 10-12 preparing for national exams and university admissions.", imageSrc: "http://img.b2bpic.net/free-photo/friends-people-group-teamwork-diversity_53876-31488.jpg", imageAlt: "Student taking an exam with a timer on the desk."},
|
||||
{
|
||||
title: "Advanced Mathematics", description: "Challenging modules for gifted students seeking to explore calculus, statistics, and advanced problem-solving techniques.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-scientist-man-looking-camera-sitting-modern-equipped-laboratory-scientist-doctor-examining-virus-evolution-using-high-tech-typing-computer-chemistry-tools-scientific-research_482257-12807.jpg", imageAlt: "Advanced mathematics equations on a blackboard."},
|
||||
title: "General math ", description: "Challenging modules for gifted students seeking to explore calculus, statistics, and advanced problem-solving techniques.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-scientist-man-looking-camera-sitting-modern-equipped-laboratory-scientist-doctor-examining-virus-evolution-using-high-tech-typing-computer-chemistry-tools-scientific-research_482257-12807.jpg", imageAlt: "Advanced mathematics equations on a blackboard."},
|
||||
]}
|
||||
title="Our Specialized Programs"
|
||||
description="Tailored courses for every grade level, ensuring a strong foundation and advanced preparation for university entrance exams."
|
||||
@@ -151,7 +179,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
members={[
|
||||
{
|
||||
id: "t1", name: "Prof. Alisher Sayfutdinov", role: "Lead Mathematics Instructor", description: "Specializing in advanced calculus and exam preparation, Prof. Sayfutdinov has over 15 years of experience.", imageSrc: "http://img.b2bpic.net/free-photo/confident-guy-with-crossed-arms-standing-front-stairs_74855-1571.jpg", imageAlt: "Portrait of Prof. Alisher Sayfutdinov."},
|
||||
id: "t1", name: "Mr. Islom Allanazarov ", role: "Lead Mathematics Instructor", description: "Specializing in advanced calculus and exam preparation, Prof. Sayfutdinov has over 15 years of experience.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Eqnsq6UMEdcjGqZ3rcskcJFd0y/uploaded-1780945107731-v73t35f4.jpg", imageAlt: "Portrait of Prof. Alisher Sayfutdinov."},
|
||||
{
|
||||
id: "t2", name: "Ms. Gulnora Karimova", role: "Junior Grades Specialist", description: "Ms. Karimova excels at building strong mathematical foundations for students in grades 6-9 with engaging methods.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-teacher-wearing-glasses-looking-front-confused-displeased-with-arms-crossed-sitting-school-desk-front-blackboard-classroom_141793-62001.jpg", imageAlt: "Portrait of Ms. Gulnora Karimova."},
|
||||
{
|
||||
@@ -241,46 +269,11 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Mathematics Center"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
{
|
||||
label: "Courses", href: "#courses"},
|
||||
{
|
||||
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"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={footerColumns}
|
||||
copyrightText="© 2024 Mathematics Center. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
116
src/app/pricing/page.tsx
Normal file
116
src/app/pricing/page.tsx
Normal file
@@ -0,0 +1,116 @@
|
||||
"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."
|
||||
useInvertedBackground={false}
|
||||
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>
|
||||
);
|
||||
}
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #120006e6;
|
||||
--primary-cta: #e63946;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #120006e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--background: #0F172A;
|
||||
--card: #1E293B;
|
||||
--foreground: #E2E8F0;
|
||||
--primary-cta: #FACC15;
|
||||
--primary-cta-text: #0F172A;
|
||||
--secondary-cta: #334155;
|
||||
--secondary-cta-text: #E2E8F0;
|
||||
--accent: #FACC15;
|
||||
--background-accent: #334155;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user