"use client"; import Link from "next/link"; import { motion } from "framer-motion"; import FadeIn from "@/components/FadeIn"; const products = [ { name: "UIT", tagline: "Institutional-grade stock screening for independent investors.", href: "/uit", badge: "Available Now", badgeColor: "#4ade80", }, { name: "More Coming", tagline: "Additional tools are in development. Stay tuned.", href: "#", badge: "Soon", badgeColor: "#888888", }, ]; export default function Home() { return ( <> {/* ── Hero ─────────────────────────────────────────────────────────── */}
{/* Background grid */}
{/* Radial glow */}

Verimund Solutions

Precision tools for{" "} serious investors. Verimund Solutions builds finance-focused software that brings institutional-level analysis to independent investors. (e.currentTarget.style.background = "#e0e0e0")} onMouseLeave={(e) => (e.currentTarget.style.background = "#ffffff")} > Explore UIT { e.currentTarget.style.borderColor = "#888888"; e.currentTarget.style.color = "#ffffff"; }} onMouseLeave={(e) => { e.currentTarget.style.borderColor = "#222222"; e.currentTarget.style.color = "#888888"; }} > Contact Us
{/* Scroll indicator */}
{/* ── About ────────────────────────────────────────────────────────── */}

About

We build software that makes institutional-grade financial analysis accessible — without a Bloomberg terminal. No account needed. Every product runs on a single license key, activated directly on your machine.

{/* ── Products ─────────────────────────────────────────────────────── */}

Products

{products.map((p, i) => ( { (e.currentTarget as HTMLElement).style.borderColor = "#333333"; (e.currentTarget as HTMLElement).style.background = "#181818"; }} onMouseLeave={(e) => { (e.currentTarget as HTMLElement).style.borderColor = "#222222"; (e.currentTarget as HTMLElement).style.background = "#111111"; }} >

{p.name}

{p.badge}

{p.tagline}

{p.href !== "#" && (

Learn more →

)}
))}
); }