This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add streaming on console/dashboard page
- Loading branch information
1 parent
1508062
commit 5cd3167
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
frontend/src/app/console/dashboard/_components/ProfileSectionSkeleton.tsx
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,20 @@ | ||
import Section from '@/components/Section' | ||
import { Skeleton } from '@/components/ui/skeleton' | ||
|
||
export default function ProfileSectionSkeleton() { | ||
return ( | ||
<Section title="내 정보"> | ||
<div className="grid h-full grid-cols-3 gap-x-2 gap-y-5"> | ||
<div className="col-span-3 flex items-center justify-center sm:col-span-1"> | ||
<Skeleton className="h-20 w-20 rounded-full" /> | ||
</div> | ||
<div className="col-span-3 flex h-full flex-col items-center justify-center space-y-1.5 sm:col-span-2 sm:items-start"> | ||
<Skeleton className="h-[20px] w-52 rounded-full" /> | ||
<Skeleton className="h-[20px] w-52 rounded-full" /> | ||
<Skeleton className="h-[20px] w-52 rounded-full" /> | ||
<Skeleton className="h-[20px] w-52 rounded-full" /> | ||
</div> | ||
</div> | ||
</Section> | ||
) | ||
} |
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