093e13b88f
- Add DALL-E cover art generation for projects (Azure OpenAI + standard OpenAI)
- CoverArtSection component with generate/upload/remove/focus-point controls
- Client-side image compression (10MB input → WebP/JPEG, max 1920px)
- DALL-E settings in admin panel (deployment, endpoint, API key)
- MCP assistant tools for cover art (generate_project_cover, remove_project_cover)
- Rename "Planarchy" → "plANARCHY" across all UI-facing text (13 files)
- Fix hardcoded canEdit={true} on project detail page — now checks user role
- Computation graph visualization (2D/3D) for calculation rules
- OG image and OpenGraph metadata
Co-Authored-By: claude-flow <ruv@ruv.net>
18 lines
646 B
TypeScript
18 lines
646 B
TypeScript
import { PublicHolidayBatch } from "~/components/vacations/PublicHolidayBatch.js";
|
|
import { EntitlementManager } from "~/components/vacations/EntitlementManager.js";
|
|
|
|
export const metadata = { title: "Vacation Management — plANARCHY" };
|
|
|
|
export default function AdminVacationsPage() {
|
|
return (
|
|
<div className="p-6 max-w-5xl mx-auto space-y-6">
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-gray-900">Vacation Management</h1>
|
|
<p className="text-sm text-gray-500 mt-1">Manage public holidays, entitlements, and year summaries</p>
|
|
</div>
|
|
<PublicHolidayBatch />
|
|
<EntitlementManager />
|
|
</div>
|
|
);
|
|
}
|