fix: add metadata to the 404 Not Found page
Some checks failed
Deploy Next.js application / deploy (push) Failing after 10m4s

This commit is contained in:
Dorian Niemiec 2024-11-08 18:56:19 +01:00
parent 54cff67b7e
commit a95984852e

View file

@ -2,6 +2,16 @@ import Footer from "@/components/Footer";
import Header from "@/components/Header"; import Header from "@/components/Header";
import Link from "next/link"; 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() { function NotFound() {
return ( return (
<> <>