'use strict';
import React, { Component } from 'react'

import './style/notfound.scss'


export default class Notfound extends Component {

    constructor(props, context) {
        super(props, context);

    }

    render() {
        return (
            <div className="modal-wrap">
                <div className="modal">
                    <div className="modal-dialog fadeInDown modal-md animated">
                        <div className="modal-content">
                            <div className="container-center">
                                <div className="view-header">
                                    <div className="header-icon">
                                        <i className="ion-ios-unlocked-outline"></i>
                                    </div>
                                    <div className="header-title">
                                        <h3>404</h3>
                                        <small>
                                            Page Not Found.
                                        </small>
                                    </div>
                                </div>

                                <div className="panel panel-filled">
                                    <div className="panel-body">
                                        Sorry, but the page you are looking for has note been found. Try checking the URL for error, then hit the refresh button on your browser or try found something else in our app.
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        )
    }
}
