Skip to content

Commit

Permalink
fix: fix 500 error page link
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexStack committed Sep 24, 2023
1 parent 10eab06 commit aebc9da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component/Homepage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import PinDropIcon from '@mui/icons-material/PinDrop';
import { Box, Typography } from '@mui/material';
import Link from 'next/link';

import PageFooter from '@/component/PageFooter';
import PageFooter from '@/component/shared/PageFooter';
import { SITE_CONFIG } from '@/constant';

export default function Homepage({ reactVersion = 'unknown' }) {
Expand Down Expand Up @@ -46,7 +46,7 @@ export default function Homepage({ reactVersion = 'unknown' }) {
<Link href='/test-page-not-exists'>Test 404 page not found</Link>
</Box>
<Box sx={{ m: 5 }}>
<Link href='/?slug=testError500'>Test 500 error page</Link>
<a href='/?slug=testError500'>Test 500 error page</a>
</Box>
</Box>
</section>
Expand Down
File renamed without changes.

0 comments on commit aebc9da

Please sign in to comment.