36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
"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>
|
|
);
|
|
}
|