-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from Bayusetiawan45/feature-chat-onboarding
Feature chat onboarding
- Loading branch information
Showing
8 changed files
with
102 additions
and
24 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
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
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
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
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,21 @@ | ||
import React from 'react' | ||
|
||
export default function ChatItemSkeleton() { | ||
return ( | ||
<div id="chat-card" className="flex items-start space-x-3"> | ||
<div className="rounded-full w-11 h-11 bg-neutral-300 dark:bg-neutral-700 animate-pulse" /> | ||
<div className="flex flex-col space-y-1 w-[90%]"> | ||
<div className="flex items-center space-x-3"> | ||
<div className="flex space-x-1 items-center"> | ||
<span className="bg-neutral-300 dark:bg-neutral-700 animate-pulse h-3 w-36 rounded" /> | ||
</div> | ||
<span className="bg-neutral-300 dark:bg-neutral-700 animate-pulse h-3 w-20 rounded" /> | ||
</div> | ||
|
||
<div className="flex space-x-2"> | ||
<div className="font-sans bg-neutral-300 dark:bg-neutral-800 animate-pulse w-full h-14 rounded-xl rounded-tl-none" /> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
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
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
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