first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-07-29 12:45:59 -04:00
parent 00f486b418
commit 135fd520db
730 changed files with 20176 additions and 93 deletions
+21
View File
@@ -0,0 +1,21 @@
import React, { useState } 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;