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