Skip to content

Commit

Permalink
fix(NotFound404): update page-not-found component UI
Browse files Browse the repository at this point in the history
  • Loading branch information
NSUWAL123 committed Sep 3, 2024
1 parent 89fc83c commit b45ff7a
Showing 1 changed file with 27 additions and 20 deletions.
47 changes: 27 additions & 20 deletions src/frontend/src/views/NotFound404.tsx
Original file line number Diff line number Diff line change
@@ -1,26 +1,33 @@
import React from 'react';
import pageNoFound from '@/assets/images/notFound.png';
import CoreModules from '@/shared/CoreModules';
import NotFound from '@/assets/images/page-not-found.png';
import Button from '@/components/common/Button';
import { useNavigate } from 'react-router-dom';

const NotFoundPage = () => {
const ProjectNotFound = () => {
const navigate = useNavigate();
return (
<CoreModules.Stack
className="notFound"
backgroundColor="white"
display="flex"
flexDirection="column"
alignItems="center"
p={3}
>
<CoreModules.Typography mt={'9%'} style={{ wordWrap: 'break-word' }} variant="subtitle2">
{`The page you were looking for doesn't exist.`}
</CoreModules.Typography>
<CoreModules.Typography style={{ wordWrap: 'break-word' }} variant="h3">
You may have mistyped the address or the page may have moved.
</CoreModules.Typography>
<img src={pageNoFound} style={{ height: '22%' }} />
</CoreModules.Stack>
<div className="md:fmtm-px-[2rem] lg:fmtm-px-[4.5rem] fmtm-h-full fmtm-bg-white">
<div className="fmtm-flex fmtm-flex-col fmtm-items-center fmtm-h-[90%] fmtm-justify-center fmtm-gap-[3rem] sm:fmtm-gap-[3.75rem]">
<div>
<img src={NotFound} alt="Project Not Found Photo" className="fmtm-w-[12rem] lg:fmtm-w-[16.75rem]" />
</div>
<div className="fmtm-flex fmtm-flex-col fmtm-gap-3">
<h2 className="fmtm-text-[1.5rem] md:fmtm-text-[2rem] lg:fmtm-text-[2.5rem] fmtm-text-[#4F4F4F] fmtm-font-barlow fmtm-font-bold fmtm-text-center">
404
</h2>
<p className="fmtm-text-sm sm:fmtm-text-base fmtm-text-center fmtm-text-[#4F4F4F] fmtm-uppercase fmtm-font-semibold">
Page Not Found
</p>
</div>
<Button
btnText="Return Home"
onClick={() => navigate('/')}
btnType="other"
className="fmtm-mx-auto fmtm-rounded-none fmtm-py-2"
/>
</div>
</div>
);
};

export default NotFoundPage;
export default ProjectNotFound;

0 comments on commit b45ff7a

Please sign in to comment.