-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b43b859
commit 9c7cf7b
Showing
3 changed files
with
39 additions
and
3 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,18 @@ | ||
import { type FC, Fragment } from 'react'; | ||
|
||
import { Skeleton } from '@/components/ui/skeleton'; | ||
|
||
const DomainError: FC = () => ( | ||
<div className="mt-12"> | ||
{Array.from({ length: 3 }).map((_, i) => ( | ||
<Fragment key={i}> | ||
<Skeleton className="mb-4 mt-8 h-7 w-16 rounded-sm" /> | ||
{Array.from({ length: 3 }).map((_, i) => ( | ||
<Skeleton className="my-3 h-5 w-full rounded-sm" key={i} /> | ||
))} | ||
</Fragment> | ||
))} | ||
</div> | ||
); | ||
|
||
export default DomainError; |
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,15 @@ | ||
import { cn } from '@/lib/utils'; | ||
|
||
function Skeleton({ | ||
className, | ||
...props | ||
}: React.HTMLAttributes<HTMLDivElement>) { | ||
return ( | ||
<div | ||
className={cn('animate-pulse rounded-md bg-muted', className)} | ||
{...props} | ||
/> | ||
); | ||
} | ||
|
||
export { Skeleton }; |
9c7cf7b
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
domain-digger – ./
domain-digger-git-main-wotschofsky.vercel.app
digger.tools
www.digger.tools
domain-digger-wotschofsky.vercel.app