import React from "react"; import Link from "next/link"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Page Not Found", }; export default function NotFound() { return (

Page Not Found

This page doesn't seem to exist. Perhaps it wilted away, or the URL got pruned. Let's get you back to healthy ground.

🏠 Go home 🌿 Browse plants
); }