Skip to content

Commit

Permalink
deixando footer em todas as paginas novamente
Browse files Browse the repository at this point in the history
Co-authored-by: Matheus73 <[email protected]>
Co-authored-by: KessJhones <[email protected]>
  • Loading branch information
3 people committed Oct 14, 2021
1 parent ac3ac6a commit 5c5e013
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/pages/produtos.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { FilterProvider } from '@contexts/Filter';

import Footer from '@components/Footer';
import ProductFilters from '@components/ProductFilters';
import ProductList from '@components/ProductList';
import PageTemplate from '@templates/Page';
Expand All @@ -16,7 +15,6 @@ const Products = () => {
<ProductList />
</Grid>
</PageTemplate>
<Footer />
</FilterProvider>
);
};
Expand Down
2 changes: 2 additions & 0 deletions src/templates/Base/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Footer from '@components/Footer';
import Navbar from '@components/Navbar';

import * as S from './styles';
Expand All @@ -10,6 +11,7 @@ const BaseTemplate = ({ children }: IBaseTemplateProps) => (
<S.Container>
<Navbar />
<S.Main>{children}</S.Main>
<Footer />
</S.Container>
);

Expand Down

0 comments on commit 5c5e013

Please sign in to comment.