Files
evidencija-rezija/web-app/app/ui/MonthCardSkeleton.tsx
Knee Cola 57dcebd640 refactor: convert repository to monorepo with npm workspaces
Restructured the repository into a monorepo to better organize application code
and maintenance scripts.

## Workspace Structure
- web-app: Next.js application (all app code moved from root)
- housekeeping: Database backup and maintenance scripts

## Key Changes
- Moved all application code to web-app/ using git mv
- Moved database scripts to housekeeping/ workspace
- Updated Dockerfile for monorepo build process
- Updated docker-compose files (volume paths: ./web-app/etc/hosts/)
- Updated .gitignore for workspace-level node_modules
- Updated documentation (README.md, CLAUDE.md, CHANGELOG.md)

## Migration Impact
- Root package.json now manages workspaces
- Build commands delegate to web-app workspace
- All file history preserved via git mv
- Docker build process updated for workspace structure

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-25 12:13:04 +01:00

24 lines
840 B
TypeScript

import { Cog8ToothIcon, PlusCircleIcon } from "@heroicons/react/24/outline";
import React from "react"
const LocationCardSkeleton: React.FC = () =>
<div className={`skeleton card card-compact card-bordered max-w-[30em] bg-base-100 shadow-s my-1`}>
<div className="card-body">
<h2 className="card-title mr-[2em]"></h2>
</div>
</div>;
export interface MonthCardSkeletonProps {
checked?: boolean;
}
export const MonthCardSkeleton: React.FC<MonthCardSkeletonProps> = ({checked=false}) =>
<div className={`skeleton collapse collapse-plus bg-base-200 my-1`}>
<input type="checkbox" name="my-accordion-3" checked={checked} disabled />
<div className="text-xl w-[15em]"></div>
<div className="collapse-content">
<LocationCardSkeleton />
<LocationCardSkeleton />
</div>
</div>;