Fix Lighthouse SEO metadata issues

This commit is contained in:
AmirReza Jamali
2026-06-17 13:51:49 +03:30
parent 635ca32b3a
commit 85d1fbb20d
11 changed files with 106 additions and 15 deletions
+40
View File
@@ -0,0 +1,40 @@
import "./globals.css";
const description =
"Opp lens helps SMEs find relevant tenders, automate document handling, and get real-time alerts for new opportunities.";
export default function GlobalNotFound() {
return (
<html lang="en">
<head>
<title>Page Not Found | Opp lens</title>
<meta
name="description"
content={description}
/>
<meta
name="robots"
content="noindex, follow"
/>
<link
rel="icon"
href="/fav-icon.svg"
/>
</head>
<body>
<main className="min-h-screen px-6 py-16 flex flex-col items-center justify-center text-center">
<h1 className="text-3xl font-bold text-[#013280]">Page not found</h1>
<p className="mt-4 max-w-xl text-[#777]">
Sorry, the page you are looking for does not exist or has been
removed.
</p>
<a
href="/"
className="mt-8 rounded-full bg-(--primary) px-8 py-4 text-white">
Home
</a>
</main>
</body>
</html>
);
}