CI / changes (push) Successful in 10s
CI / commitlint (push) Has been skipped
CI / openapi (push) Successful in 27s
CI / web (push) Successful in 38s
CI / go (push) Successful in 2m36s
CI / bird2 (push) Successful in 15s
CI / release (push) Failing after 3m7s
Refactored the project structure to support a monorepo setup, moving the web application to `apps/web/` and updating related configurations. Adjusted pre-commit hooks to use `pnpm` for linting and formatting. Updated CI workflows to reflect the new directory structure and dependencies. Removed legacy files and configurations from the previous `web/` directory, streamlining the project for better maintainability and clarity.
16 lines
434 B
Svelte
16 lines
434 B
Svelte
<script lang="ts">
|
|
import { Card, CardContent, CardHeader } from '@evobgp/ui/components/card/index.js';
|
|
import { Skeleton } from '@evobgp/ui/components/skeleton/index.js';
|
|
</script>
|
|
|
|
<Card>
|
|
<CardHeader class="gap-2">
|
|
<Skeleton class="h-5 w-40" />
|
|
<Skeleton class="h-4 w-64" />
|
|
</CardHeader>
|
|
<CardContent class="flex flex-col gap-3">
|
|
<Skeleton class="h-24 w-full" />
|
|
<Skeleton class="h-4 w-3/4" />
|
|
</CardContent>
|
|
</Card>
|