Skip to content

Latest commit

 

History

History
67 lines (59 loc) · 2.88 KB

File metadata and controls

67 lines (59 loc) · 2.88 KB
title description mode
Welcome to Bankuity
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
custom

import { HomeBg } from "/snippets/homebg.jsx"

{/* Hero Section */}

Bankuity Docs logo

Dive into our docs and learn how to leverage financial analysis, income verification, and risk assessment through the Bankuity API.

{/* Cards Grid */}

  {/* Card 1: What is Bankuity? */}
  <a href="/guides/overview" className="group rounded-2xl border border-white/10 bg-[#111224] overflow-hidden hover:border-cyan-500/50 transition-all">
    <div className="bg-[#111224] relative flex items-center justify-center">
      <img noZoom src="/logo/home-1.svg" />
    </div>
    <div className="p-6">
      <h3 className="text-lg font-semibold text-white">What is Bankuity?</h3>
      <p className="mt-2 text-sm text-gray-400 leading-relaxed">
        Discover how our behavioral analytics and transaction enrichment provide deep insights into financial stability.
      </p>
    </div>
  </a>

  {/* Card 2: Get Started */}
  <a href="/guides/generate-analysis" className="group rounded-2xl border border-white/10 bg-[#111224] overflow-hidden hover:border-cyan-500/50 transition-all">
    <div className="bg-[#111224] relative flex items-center justify-center">
      <img noZoom src="/logo/home-2.svg" />
    </div>
    <div className="p-6">
      <h3 className="text-lg font-semibold text-white">Get Started</h3>
      <p className="mt-2 text-sm text-gray-400 leading-relaxed">
        Learn how to authenticate into our API and perform your first analysis request.
      </p>
    </div>
  </a>

  {/* Card 3: API Reference */}
  <a href="/api-reference/introduction" className="group rounded-2xl border border-white/10 bg-[#111224] overflow-hidden hover:border-cyan-500/50 transition-all">
    <div className="bg-[#111224] relative flex items-center justify-center">
      <img noZoom src="/logo/home-3.svg" />
    </div>
    <div className="p-6">
      <h3 className="text-lg font-semibold text-white">API Reference</h3>
      <p className="mt-2 text-sm text-gray-400 leading-relaxed">
        Explore endpoints for income analysis, bank account verification, and automated lending recommendations.
      </p>
    </div>
  </a>
</div>