This commit is contained in:
Timothee Guerin 2024-09-16 09:20:27 -07:00 коммит произвёл GitHub
Родитель 4b942c9fb9
Коммит 0108755871
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 15 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,14 @@
import type { WrapperProps } from "@docusaurus/types";
import Navbar from "@theme-original/Navbar";
import type NavbarType from "@theme/Navbar";
type Props = WrapperProps<typeof NavbarType>;
export default function NavbarWrapper(props: Props) {
return (
<>
<div id="cookie-banner"></div>
<Navbar {...props} />
</>
);
}

Просмотреть файл

@ -6,7 +6,7 @@ let siteConsent = null;
WcpConsent &&
WcpConsent.init("en-US", "cookie-banner", (err, _siteConsent) => {
if (err != undefined) {
return error;
console.log("Error initializing WcpConsent: " + err);
} else {
siteConsent = _siteConsent; //siteConsent is used to get the current consent
}