2026-03-19 14:21:49 +01:00
|
|
|
import { A } from '@solidjs/router';
|
|
|
|
|
import AdminShell from '~/components/AdminShell';
|
|
|
|
|
|
|
|
|
|
export default function VerificationManagementPage() {
|
|
|
|
|
return (
|
|
|
|
|
<AdminShell>
|
ui(step-4): apply reference layout to remaining 7 pages
- catering-services, fitness-trainers, graphic-designers, social-media-managers,
video-editors, verification, kb: white header, data-table/table-card,
navy buttons, orange tab underlines, inline styles removed
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 05:23:57 +01:00
|
|
|
<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>
|
2026-03-19 14:21:49 +01:00
|
|
|
</div>
|
ui(step-4): apply reference layout to remaining 7 pages
- catering-services, fitness-trainers, graphic-designers, social-media-managers,
video-editors, verification, kb: white header, data-table/table-card,
navy buttons, orange tab underlines, inline styles removed
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 05:23:57 +01:00
|
|
|
<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">
|
2026-03-24 08:10:29 +01:00
|
|
|
<A class="btn-primary" href="/admin/approval">Open Approval Management</A>
|
ui(step-4): apply reference layout to remaining 7 pages
- catering-services, fitness-trainers, graphic-designers, social-media-managers,
video-editors, verification, kb: white header, data-table/table-card,
navy buttons, orange tab underlines, inline styles removed
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 05:23:57 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-03-19 14:21:49 +01:00
|
|
|
</AdminShell>
|
|
|
|
|
);
|
|
|
|
|
}
|