| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import React from 'react';
- import BasePage from '@/components/Layout/BasePage';
- import Link from 'next/link';
- const Error500 = props => (
- <div className="abs-center wd-xl">
- <div className="text-center mb-4">
- <div className="mb-3">
- <em className="fa fa-wrench fa-5x text-muted" />
- </div>
- <div className="text-lg mb-3">500</div>
- <p className="lead m-0">Oh! Something went wrong :(</p>
- <p>Don't worry, we're now checking this.</p>
- <p>In the meantime, please try one of those links below or come back in a moment</p>
- </div>
- <ul className="list-inline text-center text-sm mb-4">
- <li className="list-inline-item">
- <Link href="/dashboard/dashboardv1">
- <a className="text-muted">Go to App</a>
- </Link>
- </li>
- <li className="text-muted list-inline-item">|</li>
- <li className="list-inline-item">
- <Link href="/pages/login" as="/login">
- <a className="text-muted">Login</a>
- </Link>
- </li>
- <li className="text-muted list-inline-item">|</li>
- <li className="list-inline-item">
- <Link href="/pages/register" as="/register">
- <a className="text-muted">Register</a>
- </Link>
- </li>
- </ul>
- <div className="p-3 text-center">
- <span className="mr-2">©</span>
- <span>2020</span>
- <span className="mx-2">-</span>
- <span>Angle</span>
- <br />
- <span>Bootstrap Admin Template</span>
- </div>
- </div>
- );
- Error500.Layout = BasePage;
- export default Error500;
|