Update components/problem.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:22:28 +00:00
parent 26179aa477
commit 3fe7c31af2
1 changed files with 35 additions and 0 deletions

35
components/problem.tsx Normal file
View File

@ -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 (
<section className="py-20 bg-slate-50 dark:bg-neutral-900/50">
<Container>
<div className="text-center mb-12">
<Heading className="text-3xl md:text-4xl">The Indian Student Problem</Heading>
<p className="mt-4 text-muted-foreground">This problem exists at school, college, and early career levels.</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-4xl mx-auto">
{problems.map((problem, index) => (
<Card key={index} className="border-red-100 dark:border-red-900/30">
<CardContent className="flex items-start gap-4 p-6">
<XCircle className="w-6 h-6 text-red-500 shrink-0 mt-1" />
<span className="text-lg font-medium">{problem}</span>
</CardContent>
</Card>
))}
</div>
</Container>
</section>
);
}