diff --git a/components/solution.tsx b/components/solution.tsx new file mode 100644 index 0000000..ee8398f --- /dev/null +++ b/components/solution.tsx @@ -0,0 +1,44 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { Brain, Map, Gamepad2, Briefcase, Trophy, Rocket } from "lucide-react"; + +const solutions = [ + { title: "AI-based Skill Discovery", description: "Personalized assessment to find your true potential.", icon: Brain }, + { title: "Personalized Skill Roadmap", description: "A step-by-step guide tailored to your goals.", icon: Map }, + { title: "Gamified Learning", description: "Engaging content that feels like playing a game.", icon: Gamepad2 }, + { title: "Practical Tasks + Projects", description: "Learn by doing with real-world industry projects.", icon: Rocket }, + { title: "Rewards & Motivation", description: "Earn points and badges as you master new skills.", icon: Trophy }, + { title: "Career Preparation", description: "Get ready for jobs, freelancing, or business.", icon: Briefcase }, +]; + +export function SolutionSection() { + return ( +
+ +
+ Our Solution: The Core Vision +
+ Gamified Learning + AI Roadmap + Reward Points +
+
+
+ {solutions.map((item, index) => ( + + +
+ +
+ {item.title} + {item.description} +
+
+ ))} +
+
+
+ ); +}