Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed packages/web/src/assets/png/notFound.png
Binary file not shown.
9 changes: 1 addition & 8 deletions packages/web/src/views/NotFound/NotFound.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import { useNavigate } from "react-router-dom";
import notFoundImg from "@web/assets/png/notFound.png";
import { ROOT_ROUTES } from "@web/common/constants/routes";
import { Text } from "@web/components/Text";
import {
StyledBackButton,
StyledNotFoundContainer,
StyledNotFoundImg,
} from "./styled";
import { StyledBackButton, StyledNotFoundContainer } from "./styled";

export const NotFoundView = () => {
const navigate = useNavigate();
Expand All @@ -26,8 +21,6 @@ export const NotFoundView = () => {
<StyledBackButton onClick={goHome}>
Go back to your booty
</StyledBackButton>

<StyledNotFoundImg src={notFoundImg} alt="Ship wrecked" width="600px" />
</StyledNotFoundContainer>
);
};
7 changes: 0 additions & 7 deletions packages/web/src/views/NotFound/styled.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
import styled from "styled-components";
import { darkBlueGradient } from "@web/common/styles/theme.util";

export const StyledNotFoundImg = styled.img`
border-radius: 50%;
border: ${({ theme }) => `4px solid ${theme.color.bg.primary}`};
box-shadow: ${({ theme }) => `0 0 10px ${theme.color.shadow.default}`};
max-width: 100%;
`;

export const StyledNotFoundContainer = styled.div`
align-items: center;
background: linear-gradient(
Expand Down
Loading