Okay! The Framer Agent this am helped me with something that has been driving me insane for months so I am here to say thanks @Framer AI and not post another complaint about AI 😂
For anyone building Nav items with code, an issue is retaining the Framer page transitions within a code component, and not having the links hard-load when clicked - the solution?
This pattern below makes sure each nav item uses a Framer-aware link pattern, not a plain browser reload - keeping the amazing Framer transitions.
Below:
import { Link } from "framer"
<Link href="/about">
<a>About</a>
</Link>