Skip to content

Commit

Permalink
Try again with png files
Browse files Browse the repository at this point in the history
  • Loading branch information
conradolandia committed Sep 20, 2024
1 parent 4f53b53 commit 76b8ff1
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/blocks/Blog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}
$: ({ posts, pageNum, totalPages } = data.props);
$: image = data.image || "assets/media/blog_screenshot.webp";
$: image = data.image || "assets/media/blog_screenshot.png";
$: fullImageUrl = image.startsWith('http') ? image : `${siteUrl}${image}`;
$: metadata.setMetadata({
Expand Down
2 changes: 1 addition & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
$: title = data.title || `${siteTitle} | ${subtitle}`;
$: description = data.description || siteDescription;
$: keywords = data.keywords || siteKeywords.join(", ");
$: image = data.image || "assets/media/website_screenshot.webp";
$: image = data.image || "assets/media/website_screenshot.png";
$: fullImageUrl = image.startsWith('http') ? image : `${siteUrl}${image}`;
$: metadata.setMetadata({
Expand Down
Binary file removed static/assets/media/blog_screenshot.jpg
Binary file not shown.
Binary file added static/assets/media/blog_screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/assets/media/website_screenshot.jpg
Binary file not shown.
Binary file added static/assets/media/website_screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 76b8ff1

Please sign in to comment.