From 629f8e6fac0afe434c261dd6c07f84131adb52cf Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:22:55 +0000 Subject: [PATCH] Update components/problem-section.tsx --- components/problem-section.tsx | 57 ++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 components/problem-section.tsx diff --git a/components/problem-section.tsx b/components/problem-section.tsx new file mode 100644 index 0000000..824ae40 --- /dev/null +++ b/components/problem-section.tsx @@ -0,0 +1,57 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Card, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"; +import { XCircle } from "lucide-react"; + +const problems = [ + { + title: "Lack of practical skills", + description: "Indian students often graduate with theoretical knowledge but zero hands-on experience required by the industry.", + }, + { + title: "High dropout rates", + description: "Traditional EdTech platforms are boring and theory-heavy, leading to low completion and high student frustration.", + }, + { + title: "Career Confusion", + description: "Students have no clarity on future careers or which skills actually align with their natural interests.", + }, + { + title: "The Digital Divide", + description: "Lack of affordable, scalable skilling solutions that can reach every corner of India effectively.", + }, +]; + +export function ProblemSection() { + return ( +
+ +
+ The Indian Student Problem + + This problem exists at school, college, and early career levels. We are here to bridge this gap. + +
+ +
+ {problems.map((problem, index) => ( + + +
+ +
+
+ {problem.title} + + {problem.description} + +
+
+
+ ))} +
+
+
+ ); +}