nxtgauge-admin-solid/src/routes/admin/verification.tsx
Ashwin Kumar 3b2c09cd4b style: unify all primary buttons to use shared .btn-primary class
Replaced 37 files worth of inconsistent inline Tailwind button classes
(mixed font-medium/semibold, px-4/px-6, with/without shadow-sm, inline-flex
variants) with the shared .btn-primary CSS class. Added :disabled state to
.btn-primary in app.css so disabled buttons visually dim consistently.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 08:10:29 +01:00

27 lines
1 KiB
XML

import { A } from '@solidjs/router';
import AdminShell from '~/components/AdminShell';
export default function VerificationManagementPage() {
return (
<AdminShell>
<div class="flex flex-col -mx-6 -mt-6 min-h-full">
<div class="bg-white border-b border-gray-200 px-6 py-4">
<h1 class="text-xl font-semibold text-gray-900">Approval Management</h1>
<p class="text-sm text-gray-500 mt-0.5">
Admin review now lives under Approval Management. Verification remains a user-facing status concept.
</p>
</div>
<div class="flex-1 p-6">
<div class="table-card">
<p class="notice" style="margin:0">
Use Approval Management to review companies, customers, candidates, and professional submissions.
</p>
<div class="actions">
<A class="btn-primary" href="/admin/approval">Open Approval Management</A>
</div>
</div>
</div>
</div>
</AdminShell>
);
}