Skip to content

Commit

Permalink
fix(*): added nav and footer to articles
Browse files Browse the repository at this point in the history
  • Loading branch information
HoseaCodes committed Mar 20, 2022
1 parent 0215d38 commit 6b20b2f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Pages/Articles/Articles.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import SkeletonBlog from '../../Components/Skeleton/skeletonBlog';
import axios from 'axios';
import Pagination from '../../Components/Pagination/pagination';
import { StyledHr } from '../../Layout/Hr/styledHr';
import NavBar from '../../Components/NavBar/NavBar';
import Footer from '../../Components/Footer/Footer';

const Articles = () => {

Expand Down Expand Up @@ -129,6 +131,7 @@ const Articles = () => {
// if (loading) return <div className="products"><Loading /></div>
return (
<>
<NavBar/>
<div className='article-container'>
<div className='article-header'>
<div className='artcile-header-logo'>
Expand Down Expand Up @@ -225,6 +228,7 @@ const Articles = () => {
</div>
</div>
<StyledHr Primary/>
<Footer/>
</>
)
}
Expand Down

0 comments on commit 6b20b2f

Please sign in to comment.