diff --git a/components/Layout.tsx b/components/Layout.tsx index 106f3387..5c5b51f1 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -1,26 +1,15 @@ -import { NextSeo } from "next-seo"; +import Header from "./page-header/Header"; +import Footer from "./page-footer/Footer"; import styles from "./Layout.module.scss"; -type Props = { - title?: string; - description?: string; - children: unknown; -}; - -const Layout = ({ title, description, children }: Props) => ( +const Layout = ({ children }) => ( <> - - +
{children}
+