import { type Metadata } from "next" import Card from "@/components/Card" export const metadata: Metadata = { metadataBase: new URL("https://blog.developomp.com"), title: "404", openGraph: { title: "pomp's blog | Page Not Found", }, } export default function NotFound() { return (

404

Page not found :(
) }