import React, { FunctionComponent, ReactNode } from "react"; // import CookieConsent from "react-cookie-consent"; // import { Link } from "gatsby" import "./../styles/style.scss"; import { Footer } from "./footer"; import { NavBar } from "./navigation/navbar"; import { ProfilePicture } from "./profile-pic"; type Props = { children: ReactNode[] }; export const Layout: FunctionComponent = ({ children }) => { return (
{children}
{/* This website uses cookies to enhance the user experience. {" "} Click here to learn more about cookies. */}
); };