import { Link } from "react-router-dom"; import { ArrowRight, Search, CheckCircle2, BookOpen, Bell, ShieldCheck, Sparkles, Users, GraduationCap, IndianRupee, Globe } from "lucide-react"; import { SiteLayout } from "@/components/layout/SiteLayout"; import { Button } from "@/components/ui/button"; import { SEO } from "@/components/SEO"; import { ScholarshipCard } from "@/components/ScholarshipCard"; import { scholarships } from "@/data/scholarships"; const Home = () => { const featured = scholarships.filter((s) => s.highlight).slice(0, 3); return ( {/* HERO */}
NSP 2026 applications now open • Deadlines extended for many schemes

Your scholarship journey, made simple.

ScholarMate helps Indian students discover NSP scholarships, check eligibility in seconds, follow a clear step-by-step guide, and stay ahead of every deadline.

No NSP password ever English • हिंदी • اردو Free for students
{/* BENTO FEATURES */}

Scholarship Finder

Tell us about you. We'll show every NSP scheme you qualify for, ranked by match.

Open finder

Eligibility Checker

Get a clear eligible / likely / not eligible answer with reasons.

8-Step NSP Guide

From OTR to payment — every step with checklists and common mistakes.

Alerts Center

Deadlines, extensions, payment cycles, renewal windows.

FAQ & Knowledge

Why payments fail, fixing rejections, OTR doubts — answered plainly.

{/* STATS */}
{[ { icon: GraduationCap, k: "100+", v: "NSP schemes tracked" }, { icon: IndianRupee, k: "₹2L+", v: "Max annual benefit" }, { icon: Users, k: "All", v: "States & UTs" }, { icon: ShieldCheck, k: "100%", v: "Free, no password" }, ].map(({ icon: Icon, k, v }) => (
{k}
{v}
))}
{/* FEATURED SCHEMES */}

Popular this season

Scholarships students apply for most

{featured.map((s) => )}
{/* CTA */}

Don't lose a scholarship to a small mistake.

Get a personalized list of schemes, a clear application checklist, and reminders for every deadline.

); }; export default Home;