the problem in your import remove this: import Link from "@/model/link"
import Link from "@/model/link"
and instead add this: import Link from "next/navigation"
import Link from "next/navigation"
This is because of wrong address of Link that you are importing and that's it.