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