diff --git a/public/media/mike.png b/public/media/mike.png new file mode 100644 index 0000000..702fc26 Binary files /dev/null and b/public/media/mike.png differ diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx new file mode 100644 index 0000000..86f7b58 --- /dev/null +++ b/src/app/not-found.tsx @@ -0,0 +1,32 @@ +import { ReactElement } from "react"; +import Image from "next/image"; + +/** + * The not found page. + * + * @return the page jsx + */ +const NotFoundPage = (): ReactElement => ( +
+
+ {/* Image */} + Mike Wazowski + + {/* Message */} +
+

Wrong Door!

+

+ The documentation page you were looking for could not be + found. +

+
+
+
+); +export default NotFoundPage; diff --git a/src/components/navbar/search-dialog.tsx b/src/components/navbar/search-dialog.tsx index 6acc464..9008e9f 100644 --- a/src/components/navbar/search-dialog.tsx +++ b/src/components/navbar/search-dialog.tsx @@ -52,7 +52,7 @@ const QuickSearchDialog = ({ className="cursor-pointer hover:opacity-85 transition-all transform-gpu select-none" onClick={() => setOpen(true)} > -
+
diff --git a/src/components/social-link.tsx b/src/components/social-link.tsx index c3ce476..c1a9cc8 100644 --- a/src/components/social-link.tsx +++ b/src/components/social-link.tsx @@ -22,7 +22,7 @@ const SocialLink = ({ {
); }; - export default ThemeSwitcher;