We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea4bd3 commit 7943c51Copy full SHA for 7943c51
1 file changed
src/app/about/interact.tsx
@@ -155,14 +155,8 @@ const Interact = () => {
155
alt="sorry, alt not implemented"
156
priority
157
/>
158
- {/* preload next image so that it is ready (is this the optimal way?? seems like it works...)*/}
159
- <Image
160
- src={pages[nextPage].image}
161
- height='300'
162
- width='200'
163
- className="hidden"
164
- alt="sorry, alt not implemented"
165
- />
+ {/* preload next image... i wish there was a better way to do this*/}
+ <link rel="preload" href={pages[nextPage].image} as="image"></link>
166
</div>
167
168
<div className="w-full border-2 border-gray-800 rounded p-2">
0 commit comments