import Router from 'next/router' import Link from 'next/link' export default () => (
{/* Prefetch using the declarative API */} Home Features {/* we imperatively prefetch on hover */} { Router.prefetch('/about') console.log('prefetching /about!') }} > About Contact (NO-PREFETCHING)
)