-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemo.html
102 lines (87 loc) · 4.19 KB
/
Demo.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
<!DOCTYPE html>
<html>
<head>
<meta name="google-site-verification" content="BkJtGkSDAHT9exhaigFtJRcYo6mkxjk2dxZOh7o2eqg" />
<meta name ="viewport" content = "width=device-width, initial-scale=1.0">
<title>Cadeira AI</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/fontawesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script defer src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/js/all.min.js"></script>
</head>
<body>
<body style="background-color:black;">
<section class= "header">
<nav>
<a href="index.html"><img src="Images/Cad.png" alt="Cadeira Logo"></a>
<div class="nav-links" id="navLinks">
<i id="timesIcon" class="fa fa-times" onclick="hideMenu()"></i>
<h4>
<li><a href ="index.html" >HOME</a></li>
<li><a href ="Product.html" >PRODUCT</a></li>
<li><a href ="Demo.html" class="demo">DEMO</a></li>
<li><a href ="About.html">ABOUT US</a></li>
<li><a href ="Contact.html">CONTACT US</a></li>
</h4>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<p>
</p>
</div>
</section>
<section class="DemoTitle" aria-label="Cadeira Chatbot Demo">
<h1>Demo</h1>
</section>
<section class="Demo" aria-label="Demo video of the artificial assistant">
<div class="demo-container">
<div class="DemoText">
<p>
Our AI assistant is streamlined for efficiency, able to handle numerous calls simultaneously to simplify the reservation process. Trained on a broad vocabulary and a large language model, it accommodates various languages and dialects, ensuring inclusivity. It's designed to alert staff of any issues, maintaining a smooth operation and allowing personnel to focus on in-person customer service. We're proud to innovate in the restaurant reservation space globally with our AI technology.
</p>
</div>
<div class="Cadeira-Demo">
<a><video src="Images/Cadeira-Demo.mp4" controls autoplay muted alt="Cadeira AI demo technology of artificial intelligence">
Your browser does not support the video tag.
</video></a>
</div>
</div>
</section>
<!---- Footer---->
<section class="footer" aria-label ="How to connect with Cadeira AI and contact information">
<h2>Connect With Us</h2>
<div class="icons">
<a href="https://www.instagram.com/cadeiraai/" target="_blank"><i class="fab fa-instagram" aria-label = "Cadeira AI Instagram"></i></a>
<a href="https://github.com/CadeiraAI" target="_blank"><i class="fab fa-github" aria-label ="Cadeira AI github"></i></a>
<a href="https://www.linkedin.com/company/cadeira-ia" target="_blank"><i class="fab fa-linkedin" aria-label="Cadeira AI Linkedin"></i></a>
</div>
<p>© Cadeira AI 2024</p>
<p>Made with <i class="fa fa-heart"></i> by Cadeira AI</p>
</section>
<!-------Javascript for toggle menu------->
<script>
var navLinks = document.getElementById("navLinks");
var timesIcon = document.getElementById("timesIcon");
function showMenu() {
navLinks.classList.add("active");
timesIcon.classList.add("active");
}
function hideMenu() {
navLinks.classList.remove("active");
timesIcon.classList.remove("active");
}
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CRMJVCSV0S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CRMJVCSV0S');
</script>
</body>
</html>