-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (91 loc) · 2.86 KB
/
index.html
File metadata and controls
92 lines (91 loc) · 2.86 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CR Chatbot - Professional Ollama Frontend</title>
<meta name="description" content="A professional, clean web-based chatbot frontend for Ollama endpoints with thinking models support">
<meta http-equiv="refresh" content="0; url=./cr-chatbot/">
<link rel="canonical" href="./cr-chatbot/">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.container {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 1rem;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.logo {
font-size: 3rem;
margin-bottom: 1rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 300;
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.button {
display: inline-block;
padding: 1rem 2rem;
background: rgba(255, 255, 255, 0.2);
color: white;
text-decoration: none;
border-radius: 0.5rem;
font-weight: 500;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.button:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
.spinner {
margin: 1rem auto;
width: 40px;
height: 40px;
border: 4px solid rgba(255, 255, 255, 0.3);
border-top: 4px solid white;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<div class="logo">🤖</div>
<h1>CR Chatbot</h1>
<p>Professional Ollama Frontend with Thinking Models Support</p>
<div class="spinner"></div>
<p>Redirecting to chatbot...</p>
<a href="./cr-chatbot/" class="button">Launch CR Chatbot</a>
</div>
<script>
// Redirect after 2 seconds
setTimeout(() => {
window.location.href = './cr-chatbot/';
}, 2000);
</script>
</body>
</html>