Skip to content

Commit

Permalink
removed unnecessary styles
Browse files Browse the repository at this point in the history
  • Loading branch information
KlausMikhaelson committed Jan 31, 2024
1 parent 1c09030 commit 46eb3fa
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions src/pages/NotFoundPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ const NotFoundPage: React.FC = () => {
<NotFoundContainer>
<PageNotFoundWrapper>
<PageNotFoundImg src={ErrorGraphic} alt="Page not found" />
{/* <ErrorGraphic /> */}
<PageNotFoundSubContainer>
<OopsTitle>Oops...</OopsTitle>
<PageNotFoundText>The page you're trying to reach doesn't exist.</PageNotFoundText>
</PageNotFoundSubContainer>
<PageNotFoundSubContainer>
<OopsTitle>Oops...</OopsTitle>
<PageNotFoundText>The page you're trying to reach doesn't exist.</PageNotFoundText>
</PageNotFoundSubContainer>
<PageNotFoundButton onClick={() => navigate("/channels")}>Go to Home</PageNotFoundButton>
</PageNotFoundWrapper>
</NotFoundContainer>
Expand Down Expand Up @@ -73,14 +72,6 @@ const PageNotFoundImg = styled.img`
margin: 0 auto;
`;

const PageNotFoundTitle = styled.h1`
font-size: 48px;
font-weight: 500;
margin: 0;
text-align: center;
color: black;
`;

const PageNotFoundText = styled.p`
font-size: 24px;
font-weight: 400;
Expand Down

0 comments on commit 46eb3fa

Please sign in to comment.