diff --git a/src/layouts/Layout/index.tsx b/src/layouts/Layout/index.tsx index cd3d7b0..561f59b 100644 --- a/src/layouts/Layout/index.tsx +++ b/src/layouts/Layout/index.tsx @@ -4,6 +4,7 @@ import React, { FC, Fragment, useEffect } from "react" import { Container } from "../../components/Container" import { HomeFooter } from "../../components/HomeFooter" import { HomeHeader } from "../../components/HomeHeader" +import { SEO } from "../../components/SEO" import { WavesBottom } from "../../components/Waves" import { GlobalStyles } from "../../globalStyles" import useLocation from "../../hooks/useLocation" @@ -25,9 +26,18 @@ export const Layout: FC = ({ children }) => { - + {isHome && ( + + + + + )} {!isHome && ( + {children}