import { Link } from 'react-router-dom' import blogPostsData from '../../data/blogPostsData' export default function BlogGrid() { const ResetLocation = () => window.scrollTo(0, 0) return (

Edgy Blog

Expand your brand's reach and get more followers with these tried and tested Instagram growth strategies.

{blogPostsData.map((post, index) => (

{post.title}

{post.description}

{post.author.name}

{post.author.name}

{post.readingTime} read
))}
) }