diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 5f61d014..fcc6ac06 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,10 +1,17 @@ +'use client' +import ColorMode from '@/components/chakra/ColorMode' import ErrorPage from '@/components/client/404' +import { ChakraProvider } from '@chakra-ui/react' +import chakraTheme from '@/theme' export default function NotFound() { return ( - + + + + ) diff --git a/src/components/client/404.tsx b/src/components/client/404.tsx index 12fba6b7..fcb844dd 100644 --- a/src/components/client/404.tsx +++ b/src/components/client/404.tsx @@ -1,15 +1,23 @@ 'use client' -import { Box, Container, Link, VStack, Text, Image } from '@chakra-ui/react' +import { + Box, + Container, + Link, + VStack, + Text, + Image, + Button, +} from '@chakra-ui/react' const ErrorPage = () => { return ( - + Lochness { /> - {'We apologize for the inconvenience, but the page you are attempting to access is currently unavailable. Please return to our homepage to continue browsing.'} + { + 'We apologize for the inconvenience, but the page you are attempting to access is currently unavailable. Please return to our homepage to continue browsing.' + } - Take me home + )