File tree 5 files changed +23
-10
lines changed
5 files changed +23
-10
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,25 @@ export default function Component() {
38
38
< h3 className = "text-xl font-semibold" > Quick Links</ h3 >
39
39
< ul className = "space-y-2" >
40
40
< li >
41
- < Link href = "/docs" className = "hover:underline" >
41
+ < Link href = "/docs" className = "hover:underline" prefetch = { false } >
42
42
Documentation
43
43
</ Link >
44
44
</ li >
45
45
< li >
46
- < Link href = "/playground" className = "hover:underline" >
46
+ < Link
47
+ href = "/playground"
48
+ className = "hover:underline"
49
+ prefetch = { false }
50
+ >
47
51
Playground
48
52
</ Link >
49
53
</ li >
50
54
< li >
51
- < Link href = "/stats" className = "hover:underline" >
55
+ < Link
56
+ href = "/stats"
57
+ className = "hover:underline"
58
+ prefetch = { false }
59
+ >
52
60
Project Stats
53
61
</ Link >
54
62
</ li >
@@ -58,31 +66,31 @@ export default function Component() {
58
66
< h3 className = "text-xl font-semibold" > Social</ h3 >
59
67
< ul className = "space-y-1" >
60
68
< li >
61
- < Link
69
+ < a
62
70
href = "https://github.com/47ng/nuqs"
63
71
className = "inline-flex items-center gap-1 hover:underline"
64
72
>
65
73
< SiGithub role = "presentation" className = "mr-2 size-5" />
66
74
< span > GitHub</ span >
67
- </ Link >
75
+ </ a >
68
76
</ li >
69
77
< li >
70
- < Link
78
+ < a
71
79
href = "https://www.youtube.com/@47ng-dev"
72
80
className = "inline-flex items-center gap-1 hover:underline"
73
81
>
74
82
< SiYoutube role = "presentation" className = "mr-2 size-5" />
75
83
< span > YouTube</ span >
76
- </ Link >
84
+ </ a >
77
85
</ li >
78
86
< li >
79
- < Link
87
+ < a
80
88
href = "https://bsky.app/profile/nuqs.47ng.com"
81
89
className = "inline-flex items-center gap-1 hover:underline"
82
90
>
83
91
< SiBluesky role = "presentation" className = "mr-2 size-5" />
84
92
< span > Bluesky</ span >
85
- </ Link >
93
+ </ a >
86
94
</ li >
87
95
</ ul >
88
96
</ div >
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export default function RootDocsLayout({ children }: { children: ReactNode }) {
17
17
< Link
18
18
href = "/blog/nuqs-2"
19
19
className = "text-blue-900 hover:underline focus-visible:underline focus-visible:outline-none dark:text-blue-100"
20
+ prefetch = { false }
20
21
>
21
22
Announcing nuqs v2 !
22
23
</ Link >
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export default function Layout({ children }: { children: ReactNode }) {
44
44
< Link
45
45
href = "/blog/nuqs-2"
46
46
className = "decoration-slice decoration-1 transition-all hover:underline hover:underline-offset-8 focus-visible:underline focus-visible:outline-none"
47
+ prefetch = { false }
47
48
>
48
49
Announcing nuqs version 2
49
50
</ Link >
Original file line number Diff line number Diff line change @@ -37,7 +37,9 @@ export function NotFoundComponent() {
37
37
</ p >
38
38
</ div >
39
39
< Button asChild >
40
- < Link href = "/" > Return to Home</ Link >
40
+ < Link prefetch = { false } href = "/" >
41
+ Return to Home
42
+ </ Link >
41
43
</ Button >
42
44
</ div >
43
45
</ div >
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ export default function PlaygroundLayout({
36
36
< Link
37
37
href = "/blog/nuqs-2"
38
38
className = "text-blue-900 hover:underline focus-visible:underline focus-visible:outline-none dark:text-blue-100"
39
+ prefetch = { false }
39
40
>
40
41
Announcing nuqs v2 !
41
42
</ Link >
You can’t perform that action at this time.
0 commit comments