turash/bugulma/frontend/components/organization/skeletons/OrganizationPageSkeleton.tsx
Damir Mukimov 6347f42e20
Consolidate repositories: Remove nested frontend .git and merge into main repository
- Remove nested git repository from bugulma/frontend/.git
- Add all frontend files to main repository tracking
- Convert from separate frontend/backend repos to unified monorepo
- Preserve all frontend code and development history as tracked files
- Eliminate nested repository complexity for simpler development workflow

This creates a proper monorepo structure with frontend and backend
coexisting in the same repository for easier development and deployment.
2025-11-25 06:02:57 +01:00

33 lines
1.4 KiB
TypeScript

import React from 'react';
import { MainLayout } from '@/components/layout/MainLayout.tsx';
import Skeleton from '@/components/ui/Skeleton.tsx';
import OrganizationHeaderSkeleton from '@/components/organization/skeletons/OrganizationHeaderSkeleton.tsx';
import OrganizationDetailsGridSkeleton from '@/components/organization/skeletons/OrganizationDetailsGridSkeleton.tsx';
import OrganizationSidebarSkeleton from '@/components/organization/skeletons/OrganizationSidebarSkeleton.tsx';
const OrganizationPageSkeleton = () => {
return (
<MainLayout onNavigate={() => {}} className="bg-muted/30">
<div className="mx-auto max-w-5xl px-4 py-12 sm:px-6 lg:px-8">
<Skeleton className="h-10 w-36 mb-8" />
<div className="grid grid-cols-1 lg:grid-cols-3 gap-8 items-start">
<div className="lg:col-span-2 space-y-8">
<OrganizationHeaderSkeleton />
<Skeleton className="h-32 w-full" /> {/* Placeholder for description card */}
<OrganizationDetailsGridSkeleton />
<Skeleton className="h-64 w-full" /> {/* Placeholder for resource flows */}
<Skeleton className="h-64 w-full" /> {/* Placeholder for symbiosis hub */}
</div>
<div className="lg:col-span-1 space-y-8 lg:sticky lg:top-24">
<OrganizationSidebarSkeleton />
</div>
</div>
</div>
</MainLayout>
);
};
export default OrganizationPageSkeleton;