Skip to content
Open
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
15 changes: 10 additions & 5 deletions src/components/ErrorPageComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,30 @@ export const ErrorPageComponent: React.FC<ErrorProps> = ({ title }) => {
}}
>
<main>
<Typography variant="h3" color="#001E2E" sx={{ marginBottom: '20px' }}>
<Typography variant="h3" color="#001E2E" sx={{ marginBottom: "20px" }}>
{title}
</Typography>

<Image
src="/icons/error-illustration.png"
alt="Error Robot"
width="100"
height="100"
width={743}
height={418}
sizes="100vw"
style={{
width: "100%",
height: "auto",
}}
/>
<Typography variant="body1">
<Typography variant="body1" sx={{ marginTop: "30px", marginBottom: "20px" }}>
Something went wrong on our end. Please try again later.
</Typography>
<Button
component={Link}
href="/"
variant="contained"
color="primary"
sx={{ borderRadius: '100px' }}
sx={{ borderRadius: "100px", marginBottom:"20px" }}
>
Back to home
</Button>
Expand Down
Loading