2026-05-11 13:01:47 +02:00
|
|
|
'use client';
|
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>
2026-03-26 11:52:51 +01:00
|
|
|
|
2026-05-11 13:01:47 +02:00
|
|
|
import * as React from 'react';
|
|
|
|
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
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>
2026-03-26 11:52:51 +01:00
|
|
|
|
2026-05-11 13:01:47 +02:00
|
|
|
import { cn } from '@/lib/utils';
|
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>
2026-03-26 11:52:51 +01:00
|
|
|
|
|
|
|
|
const Progress = React.forwardRef<
|
|
|
|
|
React.ElementRef<typeof ProgressPrimitive.Root>,
|
|
|
|
|
React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>
|
|
|
|
|
>(({ className, value, ...props }, ref) => (
|
|
|
|
|
<ProgressPrimitive.Root
|
|
|
|
|
ref={ref}
|
2026-05-11 13:01:47 +02:00
|
|
|
className={cn('relative h-2 w-full overflow-hidden rounded-full bg-primary/20', className)}
|
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>
2026-03-26 11:52:51 +01:00
|
|
|
{...props}
|
|
|
|
|
>
|
|
|
|
|
<ProgressPrimitive.Indicator
|
|
|
|
|
className="h-full w-full flex-1 bg-primary transition-all"
|
|
|
|
|
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
|
|
|
|
|
/>
|
|
|
|
|
</ProgressPrimitive.Root>
|
2026-05-11 13:01:47 +02:00
|
|
|
));
|
|
|
|
|
Progress.displayName = ProgressPrimitive.Root.displayName;
|
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>
2026-03-26 11:52:51 +01:00
|
|
|
|
2026-05-11 13:01:47 +02:00
|
|
|
export { Progress };
|