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