\n\n {data.sanitySiteSettings.facebook &&\n
\n \n \n \n \n \n Facebook\n \n \n \n }\n\n {/* {data.sanitySiteSettings.twitter &&\n
\n
\n \n \n
MED.hjelper pĂĄ Twitter\n >\n }\n externalURL={data.sanitySiteSettings.twitter}\n />\n } */}\n\n
\n )}\n />\n \n);\nexport default SoMe;\n","import React, {useState} from 'react'\nimport {Link} from 'gatsby'\nimport { css } from '@emotion/css';\n\nimport Button from '../editorial/button.js'\n\nimport \"../../styling/libraries.scss\"\nimport { colors } from './../../styling/colors'\n\nconst cookieDisclaimer = css`\n background: ${colors.blue09};\n color: white;\n font-family: sans-serif;\n padding: 2em;\n line-height: 1.5em;\n position: fixed;\n max-width: 430px;\n bottom: 0;\n right: 0;\n font-size: 16px;\n opacity: 0;\n transition: .25s;\n &.open {\n opacity: 1;\n }\n`\n\nfunction CookieDisclaimer() {\n\n \n const readCookie = (name) => {\n if (name) {\n if (typeof document !== 'undefined') {\n return (\n document.cookie.match('(^|;)\\\\s*' + (name) + '\\\\s*=\\\\s*([^;]+)')?.pop() || ''\n )\n }\n }\n }\n \n console.log('cookieConsent', readCookie('cookieConsent'))\n\n const [closeConsent, setCloseConsent] = useState(readCookie('cookieConsent') === 'true');\n\n function handleClosing() {\n setCloseConsent(true)\n if (typeof document !== 'undefined') {\n document.cookie = \"cookieConsent=true\";\n }\n }\n\n if (readCookie('cookieConsent') !== 'true') {\n return (<>\n