added the cookiebar

This commit is contained in:
2022-09-06 23:48:00 +02:00
parent 799229e0cc
commit d537d80b83
8 changed files with 644 additions and 133 deletions

View File

@@ -3,6 +3,7 @@ import Helmet from "react-helmet";
import { useSiteMetadata } from "@/hooks";
import { CookieBar } from "../Cookiebar/CookieBar";
import * as styles from "./Layout.module.scss";
interface Props {
@@ -35,6 +36,7 @@ const Layout: React.FC<Props> = ({
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content={metaImageUrl} />
</Helmet>
<CookieBar />
{children}
</div>
);