-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
48 lines (48 loc) · 1.82 KB
/
chat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="CoFlu is a comprehensive text comparison tool that allows users to compare two pieces of text, generate text using AI, and view differences in both single and double column formats. This tool is particularly useful for proofreading, editing, and ensuring consistency between different versions of text.">
<title>CoFlu Chat</title>
<link rel="icon" href="data:image/svg+xml,
<svg
xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'>
<text y='25rem' font-size='480'>📝</text>
</svg>">
<link href="styles.css" rel="stylesheet">
<script src="config.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="services/storage.service.js"></script>
<script src="ui/state.js"></script>
<script src="chat.js"></script>
</head>
<body data-bs-theme="light">
<div class="container" id="content">
<nav class="navbar">
<a id="homePage" href="index.html">📝 CoFlu</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Main</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="chat.html">Chat</a>
</li>
<li class="nav-item">
<a class="nav-link" href="settings.html">Settings</a>
</li>
</ul>
</div>
</nav>
<div class="row mt-3">
<div class="col-12 text-center">
<h2>Coming Soon</h2>
</div>
</div>
</div>
</body>
</html>