import React from "react";
import Head from "next/head";
import { Header } from "./header";
import styled from "styled-components";
const Layout = (props: any) => {
return (
{props.title}
{props.children}
);
};
const Main = styled.main`
min-height: 100vh;
`;
const Footer = styled.footer`
display: flex;
justify-content: center;
margin: 20px;
font-size: 16px;
img{
width: 40px;
opacity: 0.40;
display: inline;
}
`;
export default Layout;