This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_SLOTS_BANNERS=[ { "id": 1, "image": "https://cdn-static.ams3.cdn.digitaloceanspaces.com/grandbet555/banners/slots_mobile.mp4", "imageMobile": "https://cdn-static.ams3.cdn.digitaloceanspaces.com/grandbet555/banners/slots_desktop.mp4" } ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_WHATSAPP_LINK='https://wa.me/+972507524374' | |
NEXT_PUBLIC_TELEGRAM_LINK='https://t.me/grandbet555il' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_API_URL='http://localhost:9020' | |
NEXT_PUBLIC_SPORT_NAV_VERSION='v2' | |
NEXT_PUBLIC_CONTENT_NAME='GrandBet555' | |
NEXT_PUBLIC_IS_SSG=false | |
NEXT_PUBLIC_THEME_BUTTONS_TEXT_COLOR="white" | |
NEXT_PUBLIC_BRAND_COLORS='#6500ff' | |
NEXT_PUBLIC_THEME_PRIMARY_MAIN="#6500ff" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_THEME_BUTTONS_TEXT_COLOR="white" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_SITE_TITLE = 'Galatabet' | |
NEXT_PUBLIC_SITE_DESCRIPTION = 'Galatabet' | |
NEXT_PUBLIC_SITE_LOGO_DARK = 'https://cdn-static.ams3.cdn.digitaloceanspaces.com/galatabet/galatabet-black-color.svg' | |
NEXT_PUBLIC_SITE_LOGO_WHITE = 'https://cdn-static.ams3.cdn.digitaloceanspaces.com/galatabet/galatabet-white-colorsvg.svg' | |
NEXT_PUBLIC_SITE_FAVICON = 'https://cdn-static.ams3.cdn.digitaloceanspaces.com/galatabet/favicon.png' | |
NEXT_PUBLIC_SIGNIN_BANNER = './sign-in.png' | |
NEXT_PUBLIC_SITE_LOGO_WIDTH = 200 | |
NEXT_PUBLIC_SITE_LOGO_HEIGHT = 100 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_THEME_PRIMARY_MAIN="#ffb300" | |
NEXT_PUBLIC_THEME_BUTTONS_TEXT_COLOR="#ffb300" | |
NEXT_PUBLIC_NAVBAR_MOBILE_IMAGE='https://cdn-static.ams3.cdn.digitaloceanspaces.com/royal/royal-header-bg-new.png' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NEXT_PUBLIC_KYC_ENGLISH='<style>:root{--bg:#fff;--text:#1f2937;--muted:#6b7280;--border:#e5e7eb}*{box-sizing:border-box}body{margin:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";line-height:1.65;color:var(--text);background:var(--bg)}h1{font-size:clamp(1.6rem,1.1rem + 2.2vw,2.4rem);line-height:1.25;margin:0 0 8px}h2{font-size:clamp(1.25rem,1.05rem + .6vw,1.5rem);margin:28px 0 12px;padding-top:8px;border-top:1px solid var(--border)}h3{margin:16px 0 8px;font-size:1.05rem}p{margin:0 0 12px}ol,ul{margin:8px 0 16px;padding-left:1.25rem}li{margin:6px 0}.container{max-width:900px;margin:0 auto;padding:32px 20px 64px}.subtitle{color:var(--muted);margin:0 0 12px}.footer{margin-top:32px;padding-top:16px;border-top:1px solid var(--border);font-size:.95rem;color:var(--muted)}</style><main class="container"><header><h1>Anti-Money Laundering (AML) Code of Conduct for Internet Gaming Operators</h1><p class="subtitle">Issued by Anjouan Licensing Servi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE PROCEDURE `gamingPlatformDb`.`GetRecentBigWins`(IN category VARCHAR(255)) | |
BEGIN | |
DECLARE avgWinAmount DECIMAL(10, 2); | |
SET category = IFNULL(category, ''); | |
SELECT AVG(w.winAmount) INTO avgWinAmount | |
FROM wagers AS w |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# NEXT_PUBLIC_API_URL='https://stg-gameservice.casinow.io/' | |
NEXT_PUBLIC_API_URL='http://localhost:9020/' | |
NEXT_PUBLIC_AGENTS_API_URL='https://stg-agentservice.casinow.io/' | |
NEXT_RECAPTCHA=6Ldwi-oqAAAAANZ9TyEx6I4eyRThhlibv3m24DKz | |
NEXT_PUBLIC_GOOGLE_CLIENT_ID=344253314736-niavh8v01a97tqkkepg0m9f27bpg9kbr.apps.googleusercontent.com | |
NEXT_PUBLIC_BRAND_COLORS='' | |
NEXT_PUBLIC_BRAND_NAME='Galatabet' | |
NEXT_PUBLIC_BRAND_DESCRIPTION='Welcome to Galatabet, your premier destination for online gaming. Enjoy a wide range of slots, live sports, and virtual games with top-notch security and customer support.' | |
NEXT_PUBLIC_BRAND_KEYWORDS='casino, online gaming, slots, live sports, virtual games, secure gaming, customer support' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function secondsToDate(seconds) { | |
const now = new Date(); // today's date | |
// start of today | |
const startOfDay = new Date(now.getFullYear(), now.getMonth(), now.getDate()); | |
// add the seconds | |
return new Date(startOfDay.getTime() + seconds * 1000); | |
} |
NewerOlder