import React from “react”;
const Blog = () => {
const posts = [
{
id: 1,
title: “10 Proven SEO Strategies for 2025”,
excerpt:
“Discover the latest SEO techniques that can help your website rank higher and attract more organic traffic.”,
date: “September 20, 2025”,
author: “Abdullah Anas”,
image: “https://via.placeholder.com/600×300”,
},
{
id: 2,
title: “Facebook Ads vs Google Ads: Which One Should You Choose?”,
excerpt:
“A detailed comparison of Facebook Ads and Google Ads to help you make the right decision for your marketing budget.”,
date: “September 15, 2025”,
author: “Abdullah Anas”,
image: “https://via.placeholder.com/600×300”,
},
{
id: 3,
title: “How to Increase ROI with Conversion Rate Optimization”,
excerpt:
“Practical tips on improving your website’s conversion rate using proven CRO techniques.”,
date: “September 10, 2025”,
author: “Abdullah Anas”,
image: “https://via.placeholder.com/600×300”,
},
];
return (
{/* Heading */}
Latest Blog Posts
Insights, strategies, and tips to grow your business through digital
marketing.
{/* Blog Grid */}
{posts.map((post) => (
{post.title}
{post.excerpt}
{post.date}
By {post.author}
Read More →
))}
);
};
export default Blog;