Skip to content

Commit

Permalink
[material-ui][docs] Fix broken image links in blog template on master…
Browse files Browse the repository at this point in the history
… branch (#42969)

Signed-off-by: navedqb <109583873+navedqb@users.noreply.github.com>
  • Loading branch information
navedqb committed Jul 17, 2024
1 parent 77af399 commit 3aec5b5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/data/material/getting-started/templates/blog/Blog.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const mainFeaturedPost = {
title: 'Title of a longer featured blog post',
description:
"Multiple lines of text that form the lede, informing new readers quickly and efficiently about what's most interesting in this post's contents.",
image: 'https://source.unsplash.com/random?wallpapers',
image: 'https://picsum.photos/1100/350',
imageText: 'main image description',
linkText: 'Continue reading…',
};
Expand All @@ -44,15 +44,15 @@ const featuredPosts = [
date: 'Nov 12',
description:
'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'https://source.unsplash.com/random?wallpapers',
image: 'https://picsum.photos/200/300',
imageLabel: 'Image Text',
},
{
title: 'Post title',
date: 'Nov 11',
description:
'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'https://source.unsplash.com/random?wallpapers',
image: 'https://picsum.photos/200/300',
imageLabel: 'Image Text',
},
];
Expand Down
6 changes: 3 additions & 3 deletions docs/data/material/getting-started/templates/blog/Blog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const mainFeaturedPost = {
title: 'Title of a longer featured blog post',
description:
"Multiple lines of text that form the lede, informing new readers quickly and efficiently about what's most interesting in this post's contents.",
image: 'https://source.unsplash.com/random?wallpapers',
image: 'https://picsum.photos/1100/350',
imageText: 'main image description',
linkText: 'Continue reading…',
};
Expand All @@ -44,15 +44,15 @@ const featuredPosts = [
date: 'Nov 12',
description:
'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'https://source.unsplash.com/random?wallpapers',
image: 'https://picsum.photos/200/300',
imageLabel: 'Image Text',
},
{
title: 'Post title',
date: 'Nov 11',
description:
'This is a wider card with supporting text below as a natural lead-in to additional content.',
image: 'https://source.unsplash.com/random?wallpapers',
image: 'https://picsum.photos/200/300',
imageLabel: 'Image Text',
},
];
Expand Down

0 comments on commit 3aec5b5

Please sign in to comment.