import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import Image from "next/image"; import Link from "next/link"; import { ToastContainer, Zoom } from "react-toastify"; import GoogleAnalytics from "@/app/_components/GoogleAnalytics"; import "@/app/globals.css"; import { Suspense } from "react"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { metadataBase: new URL("https://opplenz.com"), title: "Page Not Found | Opp lens", description: "Opp lens helps SMEs find relevant tenders, automate document handling, and get real-time alerts for new opportunities.", robots: { index: false, follow: true, }, icons: { icon: "/fav-icon.svg", }, }; function ContactInfo({ icon, contact, href, ariaLabel, contactIconSrc, }: { icon: string; contact: string; href?: string; ariaLabel: string; contactIconSrc?: string; }) { return (
{!!contactIconSrc && (