CoolFace
Apppublic

getZuma/KB-Query-Bot

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
index.html45 linesDownload Raw Back to root
1<!DOCTYPE html>2<html>3	<head>4		<meta charset="utf-8" />5		<meta name="viewport" content="width=device-width" />6		<title>My static Space</title>7		<link rel="stylesheet" href="style.css" />8	</head>9	<body>10 11      <script>12window.addEventListener('mouseover', initLandbot, { once: true });13window.addEventListener('touchstart', initLandbot, { once: true });14var myLandbot;15function initLandbot() {16  if (!myLandbot) {17    var s = document.createElement('script');s.type = 'text/javascript';s.async = true;18    s.addEventListener('load', function() {19      var myLandbot = new Landbot.Livechat({20        configUrl: 'https://storage.googleapis.com/landbot.pro/v3/H-1674458-4WV1PFRGKDIMTRAW/index.json',21        customData:{22          community_id:"64418529e51607e58d576cba",23          community_name:"Courtyards Apts"24        },25      });26    });27    s.src = 'https://cdn.landbot.io/landbot-3/landbot-3.0.0.js';28    var x = document.getElementsByTagName('script')[0];29    x.parentNode.insertBefore(s, x);30  }31}32</script>33      34		<div class="card">35			<h1>Welcome to your static Space!</h1>36			<p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>37			<p>38				Also don't forget to check the39				<a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.40			</p>41          42		</div>43	</body>44</html>45