-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add loading skeleton state for projects page (#64)
- Add RepoSkeleton component for loading animations - Implement UnoCSS animations for smooth loading transitions - Add proper loading fallback UI with skeleton cards
- Loading branch information
1 parent
9233afc
commit 328cd02
Showing
2 changed files
with
28 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<template> | ||
<div class="border rounded-lg p-4 animate-pulse"> | ||
<div class="h-6 w-2/3 bg-gray-200 rounded mb-2" /> | ||
<div class="h-4 w-4/5 bg-gray-200 rounded mb-4" /> | ||
<div class="flex items-center space-x-4"> | ||
<div class="h-4 w-16 bg-gray-200 rounded" /> | ||
<div class="h-4 w-16 bg-gray-200 rounded" /> | ||
</div> | ||
</div> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters