We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a880629 commit 825f257Copy full SHA for 825f257
pages/bookmarks.tsx
@@ -28,6 +28,7 @@ const Bookmarks = ({ bookmarks }: BookmarksProps): JSX.Element => (
28
<Container marginBottom="5rem">
29
<Head>
30
<title>Bookmarks</title>
31
+ <link rel="preconnect" href="https://rdl.ink" />
32
</Head>
33
<Container alignItems="center" mb="3rem">
34
<Title>Bookmarks</Title>
@@ -52,7 +53,9 @@ const Bookmarks = ({ bookmarks }: BookmarksProps): JSX.Element => (
52
53
<Image
54
layout="fill"
55
objectFit="cover"
- src={`https://rdl.ink/render/${encodeURIComponent(url)}`}
56
+ src={`https://rdl.ink/render/${encodeURIComponent(
57
+ url,
58
+ )}?width=400&height=150&mode=crop&format=avif`}
59
alt={name}
60
/>
61
</Container>
0 commit comments