login: add Powered by Zino footer (orange)

This commit is contained in:
Bhanu Prakash Sai Potteri 2026-06-02 11:12:34 +05:30
parent c3bad23026
commit 60fb2bc8cd

View File

@ -42,7 +42,7 @@ export default function Login() {
}; };
return ( return (
<div className="min-h-screen flex bg-white"> <div className="min-h-screen flex bg-white relative">
{/* ── Left — TM brand panel ───────────────────────────────────── */} {/* ── Left — TM brand panel ───────────────────────────────────── */}
<div <div
className="hidden lg:flex lg:w-[45%] flex-col justify-between p-14 relative overflow-hidden text-white" className="hidden lg:flex lg:w-[45%] flex-col justify-between p-14 relative overflow-hidden text-white"
@ -176,6 +176,12 @@ export default function Login() {
</div> </div>
</div> </div>
{/* Powered by Zino — bottom right */}
<div className="absolute bottom-4 right-6 flex items-center gap-1.5 z-20">
<span className="text-[11px] uppercase tracking-[0.12em] text-stone-400">Powered by</span>
<span className="text-[11px] font-bold uppercase tracking-[0.12em]" style={{ color: "#f97316" }}>Zino</span>
</div>
</div> </div>
); );
} }