Skip to content

Commit 83ee698

Browse files
committed
feat(web): point creators to free image sources in the cover picker
Under 'Or paste an image URL', add a hint linking Unsplash/Pexels with a 'right-click → Copy image address' tip so creators can easily grab a custom cover image.
1 parent c9bcbd2 commit 83ee698

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

web/components/cover-picker.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,13 @@ export function CoverPicker({ value, accentHex, title, onChange }: CoverPickerPr
123123
{value && !CURATED_SET.has(value) && (
124124
<p className="mt-1 text-xs text-muted truncate">Current: {value}</p>
125125
)}
126+
<p className="mt-2 text-xs text-muted leading-relaxed">
127+
Need an image? Grab a free one from{" "}
128+
<a href="https://unsplash.com/s/photos/shopping" target="_blank" rel="noopener noreferrer" className="text-accent underline underline-offset-2">Unsplash</a>
129+
{" or "}
130+
<a href="https://www.pexels.com/search/shopping/" target="_blank" rel="noopener noreferrer" className="text-accent underline underline-offset-2">Pexels</a>
131+
{" "}— open the photo, right-click → <span className="font-medium">Copy image address</span>, and paste it above.
132+
</p>
126133
</div>
127134
</div>
128135
);

0 commit comments

Comments
 (0)