diff --git a/component/card/ChattingRoom.tsx b/component/card/ChattingRoom.tsx index 345e432..5eebca6 100644 --- a/component/card/ChattingRoom.tsx +++ b/component/card/ChattingRoom.tsx @@ -36,8 +36,8 @@ const ChattingRoom = ({ <> @@ -68,11 +68,10 @@ const ChattingRoom = ({ { + return ( + <> + + + + + + + + + + + + + + + + ); +}; + +export default NotFoundIcon; diff --git a/component/icon/SaladIcon.tsx b/component/icon/SaladIcon.tsx index 0da92e7..e71d628 100644 --- a/component/icon/SaladIcon.tsx +++ b/component/icon/SaladIcon.tsx @@ -74,8 +74,8 @@ const SaladIcon = () => { diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 0a8d2a4..a297806 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -1,7 +1,67 @@ +"use client"; +import { Button, ButtonGroup, Text, VStack } from "@chakra-ui/react"; import React from "react"; +import NotFoundIcon from "../../component/icon/NotFoundIcon"; +import { useRouter } from "next/navigation"; const NotFound = () => { - return
NotfoundPAge
; + const router = useRouter(); + return ( + <> + + + + + 찾을 수 없는 페이지에요 +
+ 다시 들어와볼까요? +
+
+ + + + +
+ + ); }; export default NotFound;