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 +
+
+
+
+
+ ); +}