url-minify/frontend/pages/404.js

21 lines
473 B
JavaScript
Raw Normal View History

import { urlAlphabet } from 'nanoid'
import React from 'react'
2022-02-13 08:28:33 +00:00
const NotFound = () => {
return (
<div className="Box">
<div className="Box2">
<p className="P1">404 Not Found</p>
<p className="P2">The page you are looking for is not available</p>
<button className="Button">
<a className="Take-me-back" href="/">
Take me back!
</a>
</button>
</div>
</div>
)
2022-02-13 08:28:33 +00:00
}
export default NotFound