-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create hero specific skeleton * refactor: move skeleton from index to carousel * refactor: move skeleton to component directory
- Loading branch information
Showing
4 changed files
with
25 additions
and
22 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
16 changes: 16 additions & 0 deletions
16
apps/web/components/ui/HeroContent/HeroContentSkeleton.vue
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,16 @@ | ||
<template> | ||
<output | ||
class="flex flex-col md:flex-row-reverse md:justify-center mx-auto mb-10 text-center animate-pulse p-4 border-neutral-200 border-b" | ||
> | ||
<div class="flex flex-col md:basis-2/4 md:items-stretch md:overflow-hidden"> | ||
<div class="h-[567px] bg-gray-300 rounded-sm"></div> | ||
</div> | ||
<div class="p-4 md:p-10 md:max-w-[768px] md:flex md:flex-col md:justify-center md:items-start md:basis-2/4"> | ||
<div class="h-6 sm:h-8 bg-gray-300 rounded-sm w-full mb-2"></div> | ||
<div class="h-8 sm:h-10 bg-gray-300 rounded-sm w-3/4 mb-4"></div> | ||
<div class="h-4 sm:h-6 bg-gray-300 rounded-sm w-full mb-2"></div> | ||
<div class="h-4 sm:h-6 bg-gray-300 rounded-sm w-5/6 mb-6"></div> | ||
<div class="h-10 sm:h-12 bg-gray-300 rounded-sm w-1/3"></div> | ||
</div> | ||
</output> | ||
</template> |
This file was deleted.
Oops, something went wrong.
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