From 94187db907eeb05a0acbd57c97b9af9a761befa6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 23 May 2026 01:05:11 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 291 ++++++++--------------------------------------- 1 file changed, 46 insertions(+), 245 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b30c192..6b02cd8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Clock, TrendingUp, Users } from "lucide-react"; +import { Clock, TrendingUp, Users, Brain, Heart, Lightbulb } from "lucide-react"; export default function LandingPage() { return ( @@ -31,26 +31,11 @@ export default function LandingPage() { @@ -180,27 +85,12 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} metrics={[ - { - id: "m1", - title: "Students Tutored", - value: "500+", - icon: Users, - }, - { - id: "m2", - title: "Success Rate", - value: "92%", - icon: TrendingUp, - }, - { - id: "m3", - title: "Hours Taught", - value: "2k+", - icon: Clock, - }, + { id: "m1", title: "Reduced Anxiety", value: "95%", icon: Brain }, + { id: "m2", title: "Confidence Boost", value: "98%", icon: Heart }, + { id: "m3", title: "Concepts Mastered", value: "2k+", icon: Lightbulb } ]} - title="Our Impact" - description="The numbers behind our success." + title="Real Growth Measured" + description="These are the outcomes that truly matter: your confidence and your ability to learn." /> @@ -210,63 +100,12 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} testimonials={[ - { - id: "1", - name: "Sam", - role: "Student", - company: "High School", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-young-freelancer-woman-working-from-home-typing-laptop-looking-screen_1258-203001.jpg", - }, - { - id: "2", - name: "Alex", - role: "Student", - company: "Middle School", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/woman-sitting-table-with-book_273609-12711.jpg", - }, - { - id: "3", - name: "Jamie", - role: "Student", - company: "University", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/positive-male-sitting-desk-coffee-shop-using-laptop_273609-12511.jpg", - }, - { - id: "4", - name: "Jordan", - role: "Student", - company: "High School", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-happy-redhead-woman-red-hat-drinking-from-thermos-warming-up-with-hot-drink-her-flask_1258-196826.jpg", - }, - { - id: "5", - name: "Casey", - role: "Student", - company: "Middle School", - rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-african-american-female-college-student-holding-notebooks-backpack-smiling-standing-yellow-background_1258-54844.jpg", - }, + { id: "1", name: "Sarah", role: "Student", company: "University", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-african-american-female-college-student-holding-notebooks-backpack-smiling-standing-yellow-background_1258-54844.jpg" }, + { id: "2", name: "Mark", role: "Student", company: "High School", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/positive-male-sitting-desk-coffee-shop-using-laptop_273609-12511.jpg" } ]} - kpiItems={[ - { - value: "4.9", - label: "Rating", - }, - { - value: "500+", - label: "Students", - }, - { - value: "90%+", - label: "Success", - }, - ]} - title="Student Stories" - description="Hear from students who were once in your shoes." + kpiItems={[{ value: "100%", label: "Empowerment" }, { value: "500+", label: "Learners" }, { value: "4.9", label: "Rating" }]} + title="From Fear to Fluency" + description="Success stories from students who finally found their way." /> @@ -275,25 +114,13 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={true} faqs={[ - { - id: "q1", - title: "Do I need any special software?", - content: "Just a computer with an internet connection and a webcam.", - }, - { - id: "q2", - title: "Are sessions recorded?", - content: "Yes, you get access to all session recordings for revision.", - }, - { - id: "q3", - title: "How long are the sessions?", - content: "Sessions are typically 60 minutes long.", - }, + { id: "q1", title: "What if I'm behind in class?", content: "That's okay! We focus on your current level and build forward, filling in the gaps with no pressure." }, + { id: "q2", title: "Is this like a regular tutor?", content: "Not exactly. I prioritize your emotional connection to math, helping you manage the stress so that learning can actually happen." }, + { id: "q3", title: "How do I get started?", content: "Message me to book a discovery call. We'll chat about how you learn and what blocks are holding you back." } ]} - imageSrc="http://img.b2bpic.net/free-photo/college-student-participates-online-webinar-course-with-headphones_482257-117829.jpg" - title="Common Questions" - description="Everything you need to know about our sessions." + imageSrc="http://img.b2bpic.net/free-photo/teacher-explaining-lesson-girl-class_23-2148665958.jpg" + title="Frequently Asked Questions" + description="Your journey starts with asking the right questions." faqsAnimation="slide-up" /> @@ -301,50 +128,24 @@ export default function LandingPage() {
); -} +} \ No newline at end of file -- 2.49.1