import Link from 'next/link'; import { ArrowRight, Building2, Network, UserRound } from 'lucide-react'; const PORTALS = [ { href: '/org/login', title: 'Organisation', description: 'Manage chapters, org-wide rules and admin access.', icon: Network, iconWrap: 'bg-violet-100 text-violet-600', ring: 'hover:ring-violet-200 hover:border-violet-300', }, { href: '/login', title: 'Chapter', description: 'Approve messages, manage groups and routing rules.', icon: Building2, iconWrap: 'bg-blue-100 text-blue-600', ring: 'hover:ring-blue-200 hover:border-blue-300', }, { href: '/member-login', title: 'Member', description: 'View digests, manage privacy and explore your community.', icon: UserRound, iconWrap: 'bg-emerald-100 text-emerald-600', ring: 'hover:ring-emerald-200 hover:border-emerald-300', }, ]; export default function Home() { return (
T

Welcome to TOWER

Choose how you want to sign in

{PORTALS.map((p) => { const Icon = p.icon; return (

{p.title} Portal

{p.description}

); })}

Access is provisioned by your organisation admin

); }