From 61bfe406d16fba229e209dcaf5ea211b96580b64 Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Tue, 16 Jul 2024 20:43:06 +0530 Subject: [PATCH 1/2] fix broken image links in blog template Signed-off-by: navedqb <109583873+navedqb@users.noreply.github.com> --- docs/data/material/getting-started/templates/blog/Blog.js | 6 +++--- 1 file changed, 3 insertions(+), 3 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', }, ]; From ee03a9fcdce6c7532d6585b81f2ecce9b6aeb4ab Mon Sep 17 00:00:00 2001 From: navedqb <109583873+navedqb@users.noreply.github.com> Date: Tue, 16 Jul 2024 20:44:21 +0530 Subject: [PATCH 2/2] fix broken image links in blog template Signed-off-by: navedqb <109583873+navedqb@users.noreply.github.com> --- docs/data/material/getting-started/templates/blog/Blog.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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', }, ];