-
Notifications
You must be signed in to change notification settings - Fork 1
/
pop.html
244 lines (214 loc) · 8.09 KB
/
pop.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>IFFORT AI</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<style>
.half-separator {
border-left: 2px solid rgba(0, 255, 255, 0.6); /* Neon-like border */
height: 50%; /* Half the height of the container */
position: absolute;
left: 50%; /* Position the line in the center */
top: 25%; /* Start the line from the middle */
transform: translateX(-50%); /* Center the line */
z-index: 1; /* Keeps the line above other elements */
}
/* Mobile View Adjustment */
@media (max-width: 665px) {
.half-separator {
display:none;
}
}
.text {
font-family: 'Orbitron', sans-serif; /* Futuristic font */
font-size: 20px; /* Adjust size as needed */
text-transform: uppercase; /* Makes text uppercase */
text-align: center; /* Center-aligns the text */
color: #fff; /* Neon color for the text */
text-shadow: 0 0 10px rgba(0, 255, 204, 0.8), 0 0 20px rgba(0, 255, 204, 0.6); /* Neon glow effect */
letter-spacing: 2px; /* Space between letters for a robotic feel */
transition: transform 0.3s; /* Smooth transform transition */
}
.neon-border {
border: 2px solid rgba(0, 255, 255, 0.8); /* Neon border color */
border-radius: 10px; /* Optional: rounded corners */
box-shadow: 0 0 1px rgba(0, 255, 255, 0.8), 0 0 10px rgba(0, 255, 255, 0.6); /* Neon glow effect */
padding: 5px; /* Optional: space between border and image */
display: inline-block; /* Ensure the border wraps the image properly */
}
.neon-button {
background-color: transparent; /* Make the background transparent */
color: #00FFFF; /* Neon text color */
border: 2px solid rgba(0, 255, 255, 0.8); /* Neon border color */
border-radius: 5px; /* Optional: rounded corners */
padding: 10px 20px; /* Adjust padding as needed */
font-size: 16px; /* Font size */
cursor: pointer; /* Change cursor on hover */
transition: all 0.3s ease; /* Smooth transition for hover effect */
box-shadow: 0 0 1px rgba(0, 255, 255, 0.8), 0 0 10px rgba(0, 255, 255, 0.6); /* Neon glow effect */
}
/* Hover effect */
.neon-button:hover {
background-color: rgba(0, 255, 255, 0.1); /* Light background on hover */
box-shadow: 0 0 2px rgba(0, 255, 255, 1), 0 0 15px rgba(0, 255, 255, 0.8); /* Enhanced glow effect */
}
.robotic-title {
font-family: 'Roboto', sans-serif; /* Modern font */
font-size: 48px; /* Adjust size as needed */
text-transform: uppercase; /* Makes text uppercase */
letter-spacing: 5px; /* Space between letters for a robotic feel */
-webkit-background-clip: text;
/* Makes text color transparent to show gradient */
animation: pulse 2s; /* Optional pulse animation */
}
@keyframes pulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Background */
body {
background: linear-gradient(135deg, #1f1c2c, #928DAB);
font-family: 'Poppins', sans-serif;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Flexbox for Two Columns */
.container {
display: flex;
flex-wrap: wrap;
width: 100%;
max-width: 1200px;
justify-content: space-between;
padding: 20px;
}
/* Left and Right Divs */
.left, .right {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 10px;
max-width: 50%;
min-width: 300px;
text-align: center;
}
/* Left Div Styling */
.left .logo {
max-width: 250px;
margin-bottom: 20px;
}
.left .message {
color: #fff;
font-size: 1.5rem;
margin-bottom: 20px;
}
.left .powered-by {
color: #f7b83b;
font-size: 1rem;
margin-bottom: 20px;
}
.left .qr-container img {
width: 160px;
margin: 5px;
}
/* Right Div Styling */
.right .logo {
max-width: 150px;
margin-bottom: 20px;
}
.right .button {
padding: 10px 25px;
border-radius: 50px;
border: none;
color: #fff;
font-size: 1.2rem;
cursor: pointer;
margin: 10px;
width: 200px;
}
.red-button {
background-color: #ff4d4d;
}
.yellow-button {
background-color: #ffeb3b;
color: #000;
}
.green-button {
background-color: #4caf50;
}
/* Responsive Layout */
@media (max-width: 768px) {
.left, .right {
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<!-- Left Div -->
<div class="left">
<!-- Logo -->
<img src="GGWhiteLogo24.png" alt="JEtX Logo" class="logo">
<!-- Message -->
<div class="message robotic-title"> Gitex || Fitze || Iffort , Scan the QR codes to connect with us!</div>
<!-- Powered by Text -->
<div class="text" style="padding:20px;">Powered by Iffort </div>
<!-- QR Images -->
<div class="qr-container">
<img src="https://api.qrserver.com/v1/create-qr-code/?color=000000&bgcolor=FFFFFF&data=https%3A%2F%2Fiffort-ai-agents.netlify.app%2Fchat.html&qzone=1&margin=0&size=400x400&ecc=L" alt="QR Code 1" class="neon-border">
<img src="https://api.qrserver.com/v1/create-qr-code/?color=000000&bgcolor=FFFFFF&data=https%3A%2F%2Fiffort-ai-agents.netlify.app%2Fvoice.html&qzone=1&margin=0&size=400x400&ecc=L" alt="QR Code 2" class="neon-border">
<img src="https://api.qrserver.com/v1/create-qr-code/?color=000000&bgcolor=FFFFFF&data=https%3A%2F%2Fwa.me%2F15556205683%3Ftext%3DHey%2520Fitze!%2520Can%2520you%2520explain%2520your%2520motive%3F&qzone=1&margin=0&size=400x400&ecc=L" alt="QR Code 3" class="neon-border">
</div>
</div>
<div class="half-separator"></div>
<div class=" right flex-container">
<!-- Fitze Logo -->
<img src="https://www.fitze.ae/wp-content/themes/Fitze/images/logo.svg" alt="Fitze Logo" class="logo">
<button onclick="window.location.href='choice.html'" class="neon-button ">Back</button>
</div>
<!-- Voiceglow Widget -->
<div style="width: 0; height: 0;" id="VG_OVERLAY_CONTAINER">
<!-- Here is where Voiceglow renders the widget. -->
<!-- Set render to 'full-width' then adjust the width and height to 500px (for example) to render the chatbot itself without the popup. -->
</div>
</div>
<!-- Voiceglow Script -->
<script defer>
(function() {
window.VG_CONFIG = {
ID: "dh2n9r77dj8f7nt6", // YOUR AGENT ID
region: 'na', // YOUR ACCOUNT REGION
render: 'bottom-right', // can be 'full-width' or 'bottom-left' or 'bottom-right'
stylesheets: [
// Base Voiceglow CSS
"https://vg-bunny-cdn.b-cdn.net/vg_live_build/styles.css",
],
// Optional user data
}
var VG_SCRIPT = document.createElement("script");
VG_SCRIPT.src = "https://vg-bunny-cdn.b-cdn.net/vg_live_build/vg_bundle.js";
VG_SCRIPT.defer = true;
document.body.appendChild(VG_SCRIPT);
})()
</script>
</body>
</html>