41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
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>
|
|
);
|
|
}
|