<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NSJQV4S"
height="0" width="0" style="display:none;visibility:hidden"></iframe>
Loading...
Cookies
We use cookies to offer a better browsing experience. Cookies enhance site navigation, analyze site usage,
and assist in our marketing efforts. By clicking Accept. you agree to the storing of
cookies on your device. To refuse all non-required cookies, click on Decline.
Decline
Accept
window.laravelCookieConsent = (function () {
const COOKIE_VALUE = 1;
const COOKIE_DOMAIN = 'ingestai.io';
function consentWithCookies() {
setCookie('laravel_cookie_consent', COOKIE_VALUE, 7300);
hideCookieDialog();
}
function cookieExists(name) {
return (document.cookie.split('; ').indexOf(name + '=' + COOKIE_VALUE) !== -1);
}
function hideCookieDialog() {
const dialogs = document.getElementsByClassName('js-cookie-consent');
for (let i = 0; i < dialogs.length; ++i) {
dialogs[i].style.display = 'none';
}
}
function setCookie(name, value, expirationInDays) {
const date = new Date();
date.setTime(date.getTime() + (expirationInDays * 24 * 60 * 60 * 1000));
document.cookie = name + '=' + value
+ ';expires=' + date.toUTCString()
+ ';domain=' + COOKIE_DOMAIN
+ ';path=/'
+ ';samesite=lax';
}
if (cookieExists('laravel_cookie_consent')) {
hideCookieDialog();
}
const buttons = document.getElementsByClassName('js-cookie-consent-agree');
for (let i = 0; i < buttons.length; ++i) {
buttons[i].addEventListener('click', consentWithCookies);
}
return {
consentWithCookies: consentWithCookies,
hideCookieDialog: hideCookieDialog
};
})();
$(document).ready(function() {
var cookieConsent = getCookie('cookie_consent');
if (cookieConsent === 'accepted') {
// cookie already accepted, do nothing
} else {
// cookie not accepted yet, show cookie consent popup
$('.js-cookie-consent').fadeIn();
}
$('.js-cookie-consent-agree').on('click', function(e) {
e.preventDefault();
setCookie('cookie_consent', 'accepted', 365);
$('.js-cookie-consent').fadeOut();
});
$('.js-cookie-consent-decline').on('click', function(e) {
e.preventDefault();
setCookie('cookie_consent', 'declined', 365);
$('.js-cookie-consent').fadeOut();
});
});
function setCookie(name, value, days) {
var expires = '';
if (days) {
var date = new Date();
d