-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d666932
commit 4d0ed55
Showing
17 changed files
with
840 additions
and
108 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
import Link from 'next/link' | ||
import Stack from '@mui/material/Stack' | ||
import NextLink from 'next/link' | ||
|
||
export default function NotFound() { | ||
return ( | ||
<div> | ||
<h2>Not Found</h2> | ||
<Stack justifyContent="center" alignItems="center" sx={{height: '100vh', width: '100vw'}}> | ||
<h2>Page Not Found</h2> | ||
<p>Could not find requested resource</p> | ||
<Link href="/">Return Home</Link> | ||
</div> | ||
<NextLink href="/">Home</NextLink> | ||
</Stack> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
import * as React from 'react'; | ||
import Typography from '@mui/material/Typography'; | ||
import MuiLink from '@mui/material/Link'; | ||
import NextLink from 'next/link'; | ||
|
||
export default function Copyright() { | ||
return ( | ||
<Typography | ||
variant="body2" | ||
align="center" | ||
sx={{ | ||
color: 'text.secondary', | ||
}} | ||
> | ||
Copyright © 2025{' '} | ||
<MuiLink color="inherit" href="https://andrew.marcuse.info/"> | ||
Andrew Marcuse | ||
</MuiLink>. All Rights Reserved. | ||
</Typography> | ||
); | ||
return ( | ||
<Typography | ||
variant="body2" | ||
align="center" | ||
sx={{ | ||
color: 'text.secondary', | ||
}} | ||
> | ||
Copyright © 2025 Andrew Marcuse. All Rights Reserved. | ||
{' | '} | ||
<NextLink color="inherit" href="https://andrew.marcuse.info/"> | ||
Contact | ||
</NextLink> | ||
{' | '} | ||
<NextLink color="inherit" href="https://github.com/fileformat/view.sitemap.style"> | ||
Source | ||
</NextLink> | ||
</Typography> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.