diff --git a/.gitignore b/.gitignore index 8f322f0..100bd8f 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ /node_modules /.pnp .pnp.js - +.env # testing /coverage diff --git a/src/app/container_page.tsx b/src/app/container_page.tsx index 303fab9..f4e222e 100644 --- a/src/app/container_page.tsx +++ b/src/app/container_page.tsx @@ -1,5 +1,6 @@ import Footer from '~/components/footer/Footer'; import NavBar from '~/components/navBar/navBar'; +import Categories from '~/components/categories/categories'; type ContainerPageProps = { children: React.ReactNode; @@ -18,7 +19,10 @@ export function ContainerPage({ <> {typeof nav === 'boolean' && nav ? : nav} {header && header} -
{children}
+
+ + {children} +
{footer &&