fix: add metadata to the 404 Not Found page
Some checks failed
Deploy Next.js application / deploy (push) Failing after 10m4s
Some checks failed
Deploy Next.js application / deploy (push) Failing after 10m4s
This commit is contained in:
parent
54cff67b7e
commit
a95984852e
1 changed files with 10 additions and 0 deletions
|
@ -2,6 +2,16 @@ import Footer from "@/components/Footer";
|
|||
import Header from "@/components/Header";
|
||||
import Link from "next/link";
|
||||
|
||||
export const metadata = {
|
||||
title: "404 Not Found - MERNMail",
|
||||
openGraph: {
|
||||
title: "404 Not Found - MERNMail"
|
||||
},
|
||||
twitter: {
|
||||
title: "404 Not Found - MERNMail"
|
||||
}
|
||||
};
|
||||
|
||||
function NotFound() {
|
||||
return (
|
||||
<>
|
||||
|
|
Loading…
Reference in a new issue