Login panel: technical project points instead of trust bullets
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>main
parent
e984cd09ed
commit
86c3731dd2
|
|
@ -1,5 +1,5 @@
|
|||
import { FormEvent, useState } from "react";
|
||||
import { BadgeCheck, Eye, EyeOff, Landmark, Lock, LogIn, ShieldCheck, User } from "lucide-react";
|
||||
import { BookOpenCheck, Eye, EyeOff, FileSpreadsheet, Globe, Landmark, Lock, LogIn, Scale, ShieldCheck, User } from "lucide-react";
|
||||
import { Spinner } from "../components/ui";
|
||||
import { useAuth } from "../auth";
|
||||
|
||||
|
|
@ -65,8 +65,16 @@ export default function Login() {
|
|||
|
||||
<ul className="mt-8 space-y-3 text-sm">
|
||||
{[
|
||||
{ Icon: ShieldCheck, text: "Processed on the company server — financial data never leaves" },
|
||||
{ Icon: BadgeCheck, text: "Six month-end controls gate every published figure" },
|
||||
{ Icon: FileSpreadsheet,
|
||||
text: "Parses the month's Amazon transaction files — 13 marketplaces, millions of rows" },
|
||||
{ Icon: Scale,
|
||||
text: "Classifies every settlement paid vs receivable and computes the closing position" },
|
||||
{ Icon: BookOpenCheck,
|
||||
text: "AR roll-forward and month-end journal entry, reconciled to the cent" },
|
||||
{ Icon: Globe,
|
||||
text: "Each marketplace converted at confirmed month-end ECB rates (local → USD)" },
|
||||
{ Icon: ShieldCheck,
|
||||
text: "Six month-end controls and a SHA-256 audit trail gate every published figure" },
|
||||
].map(({ Icon, text }) => (
|
||||
<li key={text} className="flex items-start gap-3">
|
||||
<span className="mt-0.5 inline-flex items-center justify-center w-6 h-6 rounded-lg bg-white/10 text-lavender shrink-0">
|
||||
|
|
|
|||
Loading…
Reference in New Issue