feat: remove unused images

This commit is contained in:
AykutSarac 2023-12-24 23:37:17 +03:00
parent 2ff10b0dc7
commit a9a8b87239
No known key found for this signature in database
5 changed files with 1 additions and 7 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 40 KiB

View File

@ -8,10 +8,6 @@ const StyledErrorView = styled.div`
justify-content: center;
width: 100%;
height: 100%;
img {
filter: drop-shadow(2px 4px 6px black);
}
`;
const StyledTitle = styled.h2`
@ -26,12 +22,11 @@ const StyledInfo = styled.p`
export const ErrorView = () => (
<StyledErrorView>
<img src="/assets/undraw_qa_engineers_dg-5-p.svg" width="200" height="200" alt="oops" />
<StyledTitle>JSON Crack is unable to handle this file!</StyledTitle>
<StyledInfo>
We apologize for the problem you encountered. We are doing our best as an Open Source
community to improve our service. Unfortunately, JSON Crack is currently unable to handle such
a large file.
a large file. Please try the tree view from View Modes to see if it works.
</StyledInfo>
</StyledErrorView>
);