From 9b862b0fc9749d6c4db3b783e6456efb3137e331 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:33 +0000 Subject: [PATCH] Update components/solution-section.tsx --- components/solution-section.tsx | 86 +++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 components/solution-section.tsx diff --git a/components/solution-section.tsx b/components/solution-section.tsx new file mode 100644 index 0000000..bb21fa9 --- /dev/null +++ b/components/solution-section.tsx @@ -0,0 +1,86 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { CheckCircle2, Sparkles, Target, Gamepad2, Trophy, Briefcase } from "lucide-react"; + +const solutions = [ + { + title: "AI-based Skill Discovery", + icon: , + description: "Personalized assessment to find your natural strengths.", + }, + { + title: "Personalized Roadmap", + icon: , + description: "A step-by-step path tailored to your specific career goals.", + }, + { + title: "Gamified Learning", + icon: , + description: "Engaging experience that keeps you motivated to finish.", + }, + { + title: "Practical Projects", + icon: , + description: "Learn by doing with real-world tasks and industry projects.", + }, + { + title: "Rewards & Motivation", + icon: , + description: "Earn points and badges as you master new skills.", + }, + { + title: "Career Preparation", + icon: , + description: "Get ready for the job market with interview prep and portfolios.", + }, +]; + +export function SolutionSection() { + return ( +
+ +
+ Our Solution: The Core Vision + + A holistic platform that solves career confusion and skill gaps simultaneously. + +
+ +
+ {solutions.map((solution, index) => ( +
+
+ {solution.icon} +
+

{solution.title}

+

{solution.description}

+
+ ))} +
+ +
+

Our Unique Selling Proposition (USP)

+
+
+ + Gamified Learning +
+
+ + AI-Personalized Roadmaps +
+
+ + Reward Points +
+
+ + Real-life Mastery +
+
+
+
+
+ ); +}