import React from 'react'; import Link from 'next/link' import Services from '../../api/service'; import about from '/public/images/blog/about-widget.jpg' import blogs from '../../api/blogs' import Image from 'next/image'; const SubmitHandler = (e) => { e.preventDefault() } const ClickHandler = () => { window.scrollTo(10, 0); } const BlogSidebar = (props) => { return (

Jenny Watson

Hi! beautiful people. I`m an authtor of this blog. Read our post - stay with us

Search Here

Post Categories

    {Services.slice(0, 5).map((service, Sitem) => (
  • {service.sTitle}
  • ))}

Related Posts

{blogs.map((blog, bl) => (

{blog.title}

{blog.create_at}
))}

Tags

  • ELECTION
  • Campaign
  • STATEMENT
  • POLITICS
  • PRESS
  • SOCIAL
  • SECURITY
  • VOTE

Contact For Advertisment 270 x 310

) } export default BlogSidebar;