22 lines
637 B
JavaScript
22 lines
637 B
JavaScript
import React from 'react';
|
|
import Blogs from './News/Blogs';
|
|
|
|
function BlogHomeOne() {
|
|
return (
|
|
<section className="appie-blog-area pt-45 pb-95">
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-12">
|
|
<div className="appie-section-title text-center">
|
|
<h3 className="appie-title">Our latest blog posts</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Blogs pathname='/' />
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default BlogHomeOne;
|