From 3fe7c31af2728cbc9b64dc62a52de57e045c01a5 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:22:28 +0000 Subject: [PATCH] Update components/problem.tsx --- components/problem.tsx | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 components/problem.tsx diff --git a/components/problem.tsx b/components/problem.tsx new file mode 100644 index 0000000..689be2f --- /dev/null +++ b/components/problem.tsx @@ -0,0 +1,35 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Card, CardContent } from "@/components/ui/card"; +import { XCircle } from "lucide-react"; + +const problems = [ + "Lack of practical skills in Indian students", + "High dropout from traditional edtech (boring theory)", + "No clarity on future careers", + "Affordable, scalable skilling gap (digital divide)" +]; + +export function ProblemSection() { + return ( +
+ +
+ The Indian Student Problem +

This problem exists at school, college, and early career levels.

+
+
+ {problems.map((problem, index) => ( + + + + {problem} + + + ))} +
+
+
+ ); +}