import React from 'react';
import { Link } from 'react-router-dom';
import IceContainer from '@icedesign/container';
import styles from './index.module.scss';

export default function NotFound() {
  return (
    <div className={styles.basicNotFound}>
      <IceContainer>
        <div className={`${styles.exceptionContent}`}>
          <img
            src="https://img.alicdn.com/tfs/TB1txw7bNrI8KJjy0FpXXb5hVXa-260-260.png"
            className={styles.imgException}
            alt="页面不存在"
          />
          <div className="prompt">
            <h3 className={`${styles.title}`}>
              抱歉，你访问的页面不存在
            </h3>
            <p className={`${styles.description}`}>
              您要找的页面没有找到，请返回
              <Link to="/">首页</Link>
              继续浏览
            </p>
          </div>
        </div>
      </IceContainer>
    </div>
  );
}
