Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM, PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source files covering clients, berths, interests/pipeline, documents/EOI, expenses/invoices, email, notifications, dashboard, admin, and client portal. CI/CD via Gitea Actions with Docker builds. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { QueueDetailTable } from '@/components/admin/queue-detail-table';
|
||||
|
||||
interface QueueDetailPageProps {
|
||||
params: Promise<{ portSlug: string; queueName: string }>;
|
||||
}
|
||||
|
||||
export default async function QueueDetailPage({ params }: QueueDetailPageProps) {
|
||||
const { queueName } = await params;
|
||||
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<h1 className="text-2xl font-bold text-foreground capitalize">{queueName} Queue</h1>
|
||||
<p className="text-muted-foreground">Inspect and manage jobs in the {queueName} queue</p>
|
||||
</div>
|
||||
<QueueDetailTable queueName={queueName} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
5
src/app/(dashboard)/[portSlug]/admin/monitoring/page.tsx
Normal file
5
src/app/(dashboard)/[portSlug]/admin/monitoring/page.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import { SystemMonitoringDashboard } from '@/components/admin/system-monitoring-dashboard';
|
||||
|
||||
export default function MonitoringPage() {
|
||||
return <SystemMonitoringDashboard />;
|
||||
}
|
||||
Reference in New Issue
Block a user