Skip to content

Commit 93a9e84

Browse files
authored
Merge pull request #48 from jaseci-labs/blogs
byllm_blog_thumbnail_fix
2 parents 537e24b + dea6e19 commit 93a9e84

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

byllm/public/dev_dream.webp

79.3 KB
Loading
41.8 KB
Loading
133 KB
Loading

byllm/src/pages/Index.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ import example2 from '../assets/example-2.jpg';
2020
import example3 from '../assets/example-3.jpg';
2121
import example4 from '../assets/example-4.png';
2222

23+
// Import blog post thumbnails
24+
import promptLessImage from '/prompt_less_smile_more.webp';
25+
import devDreamImage from '/dev_dream.webp';
26+
import tutorialCompleteImage from '/tutorial_complete.webp';
27+
2328
//Import evaluation metrices images
2429
import fig17 from '../assets/fig17.png';
2530
import fig22 from '../assets/fig22.png';
@@ -98,28 +103,23 @@ const Index = () => {
98103
title: 'Prompt Less Smile More: Let the LLM Know your Intentions without Prompt Soup',
99104
description: 'Discover how byLLM revolutionizes LLM integration by eliminating complex prompt engineering and letting you focus on building.',
100105
link: 'https://medium.com/@jayanaka15/prompt-less-smile-more-let-the-llm-know-your-intentions-without-prompt-soup-01414cc48942',
101-
// You can add the actual Medium image URL here by:
102-
// 1. Opening the article on Medium
103-
// 2. Right-clicking the featured image
104-
// 3. Selecting "Copy Image Address"
105-
// Example: image: 'https://miro.medium.com/v2/resize:fit:1400/...'
106-
image: null,
106+
image: promptLessImage,
107107
author: '@jayanaka15',
108108
readTime: '5 min read'
109109
},
110110
{
111111
title: "The Developer's Dream: How Jaseci is Revolutionising Backend Development and AI Integration",
112112
description: 'Explore how Jaseci is changing the game for developers building AI-powered applications with unprecedented ease.',
113113
link: 'https://medium.com/@kashmithnisakya/the-developers-dream-how-jaseci-is-revolutionising-backend-development-and-ai-integration-c73be8fe2a6b',
114-
image: null,
114+
image: devDreamImage,
115115
author: '@kashmithnisakya',
116116
readTime: '7 min read'
117117
},
118118
{
119119
title: 'From Prompt Hell to AI Heaven: A Complete Tutorial on Building Intelligent Agents Effectively',
120120
description: 'A comprehensive guide to building intelligent AI agents without getting lost in the complexity of prompt engineering.',
121121
link: 'https://medium.com/@udithishanka.s/c8b44d322df1',
122-
image: null,
122+
image: tutorialCompleteImage,
123123
author: '@udithishanka.s',
124124
readTime: '10 min read'
125125
}
@@ -668,7 +668,7 @@ const Index = () => {
668668
<div className="overflow-hidden aspect-video relative">
669669
{post.image ? (
670670
<img
671-
src={post.image}
671+
src={post.image }
672672
alt={post.title}
673673
className="w-full h-full object-cover group-hover:scale-105 transition-transform duration-300"
674674
onError={(e) => {
@@ -936,4 +936,4 @@ const Index = () => {
936936
);
937937
};
938938

939-
export default Index;
939+
export default Index;

0 commit comments

Comments
 (0)