File size: 705 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import Link from 'next/link'
export default function HomePage() {
return (
<>
<Link href="/dashboard" id="to-dashboard">
To Dashboard
</Link>
<Link href="/static-page" id="to-static-page">
To Static Page
</Link>
<Link href="/static-page-no-prefetch" id="to-static-page-no-prefetch">
To Static Page No Prefetch
</Link>
<Link href="/dynamic-page" id="to-dynamic-page-no-params">
To Dynamic Page
</Link>
<Link href="/prefetch-auto/foobar" id="to-dynamic-page">
To Dynamic Slug Page
</Link>
<a href="/static-page" id="to-static-page-hard">
Hard Nav to Static Page
</a>
</>
)
}
|