import React from 'react'; import { Calendar, User } from 'lucide-react'; function BlogGrid() { const blogPosts = [ { title: 'Getting Started with Modern React', excerpt: 'Learn the fundamentals of React 18 and build amazing user interfaces.', author: 'John Doe', date: '2024-01-15', image: '/images/courses.aee168f4-1768917228064.png', category: 'React' }, { title: 'Building Scalable Web Applications', excerpt: 'Best practices for creating maintainable and scalable web applications.', author: 'Jane Smith', date: '2024-01-10', image: '/images/courses-box-1.e8498908-1768917228039.png', category: 'Architecture' }, { title: 'The Future of Web Development', excerpt: 'Explore emerging trends and technologies shaping the future of web development.', author: 'Mike Johnson', date: '2024-01-05', image: '/images/courses-box-2.2e36a41b-1768917228024.png', category: 'Trends' } ]; return (

Latest from our blog

Stay updated with the latest trends and best practices in web development

{blogPosts.map((post, index) => (
{post.title}
{post.category}

{post.title}

{post.excerpt}

{post.author} {post.date}
))}
); } export default BlogGrid;