hotel-ai-widget
Version:
A customizable hotel chat widget for React and vanilla HTML
57 lines (54 loc) • 1.8 kB
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hotel Chat Widget - Embed Example</title>
<link rel="stylesheet" href="https://unpkg.com/hotel-ai-widget@0.0.2/embed/hotel-ai-widget.min.css">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f5f5f5;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
margin-bottom: 30px;
}
.demo-content {
line-height: 1.6;
color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Our Hotel</h1>
<div class="demo-content">
<p>This is a demo page showing how the Hotel Chat Widget can be embedded into any website.</p>
<p>The chat widget will appear in the bottom-right corner. You can customize its position, theme, and behavior using data attributes.</p>
<p>Try clicking on the chat icon to start a conversation!</p>
</div>
</div>
<!-- Hotel Chat Widget -->
<div
data-hotel-ai-widget
data-api-key="demo-api-key"
data-base-url="https://trib-api.bukprotocol.ai"
data-google-maps-api-key="your-google-maps-api-key"
data-theme="light"
data-position="bottom-right"
></div>
<script src="https://unpkg.com/hotel-ai-widget@0.0.2/embed/hotel-ai-widget.min.js"></script>
</body>
</html>