import { motion } from "framer-motion"; import { Link } from "react-router-dom"; import { Home, ArrowLeft } from "lucide-react"; function NotFound() { return (
{/* 404 숫자 */}

404

{/* 메시지 */}

페이지를 찾을 수 없습니다

요청하신 페이지가 존재하지 않거나 이동되었을 수 있습니다.
주소를 다시 확인해 주세요.

{/* 장식 요소 */} {[...Array(5)].map((_, i) => ( ))} {/* 버튼들 */} 홈으로 가기
); } export default NotFound;