From 3aec5b59c66a8c4c1d1d36d30c1cec6e21ba00a4 Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Wed, 17 Jul 2024 18:36:49 +0530 Subject: [PATCH] [material-ui][docs] Fix broken image links in blog template on master branch (#42969) Signed-off-by: navedqb <109583873+navedqb@users.noreply.github.com> --- docs/data/material/getting-started/templates/blog/Blog.js | 6 +++--- docs/data/material/getting-started/templates/blog/Blog.tsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/data/material/getting-started/templates/blog/Blog.js b/docs/data/material/getting-started/templates/blog/Blog.js index e50167ab62667f..abbdd1647182e9 100644 --- a/docs/data/material/getting-started/templates/blog/Blog.js +++ b/docs/data/material/getting-started/templates/blog/Blog.js @@ -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…', }; @@ -44,7 +44,7 @@ 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', }, { @@ -52,7 +52,7 @@ const featuredPosts = [ 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', }, ]; diff --git a/docs/data/material/getting-started/templates/blog/Blog.tsx b/docs/data/material/getting-started/templates/blog/Blog.tsx index e50167ab62667f..abbdd1647182e9 100644 --- a/docs/data/material/getting-started/templates/blog/Blog.tsx +++ b/docs/data/material/getting-started/templates/blog/Blog.tsx @@ -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…', }; @@ -44,7 +44,7 @@ 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', }, { @@ -52,7 +52,7 @@ const featuredPosts = [ 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', }, ];