@ -92,7 +92,7 @@ async function fetchBlogPosts(): Promise<BlogPost[]> {
// Process posts sequentially with delay
const results = [];
for (const url of postUrls.slice(0, 10)) { // Limit to 10 posts for initial testing
for (const url of postUrls) { // Process all posts
results.push(await processPost(url));
}