From eb6dbbac8c96619922365fe02aba33db7d8bc8c7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:04:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2f25ef2..0f3f851 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1420,4 +1420,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file From 1c1dff305353f33ea68a10056f900ca80fd05493 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:04:40 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 89f8e1d..668abe6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,7 +9,7 @@ import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import ContactSplit from "@/components/sections/contact/ContactSplit"; -import { TrendingUp, Clock, Users, Zap } from "lucide-react"; +import { Users, TrendingUp, Clock } from "lucide-react"; export default function LandingPage() { return ( @@ -62,7 +62,7 @@ export default function LandingPage() { tag="Step 1: Setup" title="Four Simple Questions" description="Tell us your exam date, how many courses you're taking, how hard each one is, and how much time you have each day. That's all we need." - tagIcon={Zap} + tagIcon={Clock} buttons={[{ text: "Get Started", href: "#" }]} imageSrc="http://img.b2bpic.net/free-vector/task-management-app-template_23-2148663598.jpg" imageAlt="form setup onboarding interface modern" @@ -97,9 +97,9 @@ export default function LandingPage() { title="Proven Results" description="Real students. Real outcomes." metrics={[ - { id: "1", icon: TrendingUp, title: "Avg Score Boost", value: "+18%" }, - { id: "2", icon: Clock, title: "Study Hours Logged", value: "2,400+" }, - { id: "3", icon: Users, title: "Active Students", value: "1,200+" }, + { id: "1", icon: Users, title: "Active Students", value: "1,200+" }, + { id: "2", icon: TrendingUp, title: "Avg Score Boost", value: "+18%" }, + { id: "3", icon: Clock, title: "Study Hours Logged", value: "2,400+" }, ]} animationType="slide-up" textboxLayout="default" @@ -180,4 +180,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file