5 Commits

Author SHA1 Message Date
a99b7abecf Switch to version 1: modified src/app/page.tsx 2026-03-03 10:22:16 +00:00
507c15b42b Switch to version 1: modified src/app/layout.tsx 2026-03-03 10:22:15 +00:00
283d2a08c8 Merge version_2 into main
Merge version_2 into main
2026-03-03 10:08:12 +00:00
decd65883f Merge version_2 into main
Merge version_2 into main
2026-03-03 10:06:24 +00:00
ec8c57a092 Merge version_2 into main
Merge version_2 into main
2026-03-03 10:04:44 +00:00
2 changed files with 9 additions and 9 deletions

View File

@@ -1420,4 +1420,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -9,7 +9,7 @@ import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
import ContactSplit from "@/components/sections/contact/ContactSplit"; import ContactSplit from "@/components/sections/contact/ContactSplit";
import { Users, TrendingUp, Clock } from "lucide-react"; import { TrendingUp, Clock, Users, Zap } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -62,7 +62,7 @@ export default function LandingPage() {
tag="Step 1: Setup" tag="Step 1: Setup"
title="Four Simple Questions" 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." 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={Clock} tagIcon={Zap}
buttons={[{ text: "Get Started", href: "#" }]} buttons={[{ text: "Get Started", href: "#" }]}
imageSrc="http://img.b2bpic.net/free-vector/task-management-app-template_23-2148663598.jpg" imageSrc="http://img.b2bpic.net/free-vector/task-management-app-template_23-2148663598.jpg"
imageAlt="form setup onboarding interface modern" imageAlt="form setup onboarding interface modern"
@@ -83,10 +83,10 @@ export default function LandingPage() {
{ {
id: "3", title: "Real Progress Dashboard", description: "See exactly where you stand. % syllabus covered. Hours studied this week. Days left to exam. No guessing. Pure accountability.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-digital-tablet-with-bar-graph_1098-3523.jpg", imageAlt: "progress metrics statistics chart analytics"}, id: "3", title: "Real Progress Dashboard", description: "See exactly where you stand. % syllabus covered. Hours studied this week. Days left to exam. No guessing. Pure accountability.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-digital-tablet-with-bar-graph_1098-3523.jpg", imageAlt: "progress metrics statistics chart analytics"},
]} ]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-3-items"
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="invertDefault"
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
</div> </div>
@@ -97,9 +97,9 @@ export default function LandingPage() {
title="Proven Results" title="Proven Results"
description="Real students. Real outcomes." description="Real students. Real outcomes."
metrics={[ metrics={[
{ id: "1", icon: Users, title: "Active Students", value: "1,200+" }, { id: "1", icon: TrendingUp, title: "Avg Score Boost", value: "+18%" },
{ id: "2", icon: TrendingUp, title: "Avg Score Boost", value: "+18%" }, { id: "2", icon: Clock, title: "Study Hours Logged", value: "2,400+" },
{ id: "3", icon: Clock, title: "Study Hours Logged", value: "2,400+" }, { id: "3", icon: Users, title: "Active Students", value: "1,200+" },
]} ]}
animationType="slide-up" animationType="slide-up"
textboxLayout="default" textboxLayout="default"
@@ -180,4 +180,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }