We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7fa39a commit c743e14Copy full SHA for c743e14
1 file changed
src/components/PageNotFound/PageNotFound.jsx
@@ -1,3 +1,4 @@
1
+import { Helmet } from "react-helmet-async";
2
import { Link } from "react-router-dom";
3
4
// Styles
@@ -6,6 +7,10 @@ import "./PageNotFound.scss";
6
7
export default function PageNotFound() {
8
return (
9
<div className="page markdown">
10
+ <Helmet>
11
+ <title>Page Not Found | webpack</title>
12
+ <meta name="robots" content="noindex,nofollow" />
13
+ </Helmet>
14
<h1>Page Not Found</h1>
15
<p>Oops! The page you are looking for has been removed or relocated.</p>
16
<Link className="button" to="/">
0 commit comments