Spaces:
Sleeping
Sleeping
Update static/presentation-agent.html
Browse files
static/presentation-agent.html
CHANGED
@@ -40,6 +40,22 @@
|
|
40 |
color: var(--text-color);
|
41 |
transition: background-color 0.3s, color 0.3s;
|
42 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
html, body, #app {
|
45 |
height: 100%;
|
@@ -171,7 +187,9 @@
|
|
171 |
</button>
|
172 |
<div class="chat-outer-container">
|
173 |
<div class="chat-container">
|
174 |
-
<h1 class="
|
|
|
|
|
175 |
<div v-for="(message, index) in chatHistory" :key="index" class="message" :class="message.type === 'user' ? 'user-message' : 'bot-message'">
|
176 |
<div v-if="message.type === 'bot'" v-html="message.content"></div>
|
177 |
<div v-else>{{ message.content }}</div>
|
|
|
40 |
color: var(--text-color);
|
41 |
transition: background-color 0.3s, color 0.3s;
|
42 |
}
|
43 |
+
.title {
|
44 |
+
font-weight: 700;
|
45 |
+
font-size: 60px !important;
|
46 |
+
background: var(--primary-color);
|
47 |
+
-webkit-background-clip: text;
|
48 |
+
background-clip: text;
|
49 |
+
color: transparent;
|
50 |
+
text-align: center;
|
51 |
+
margin: 0;
|
52 |
+
padding: 2rem 0 0.5rem;
|
53 |
+
}
|
54 |
+
.subtitle {
|
55 |
+
font-size: 24px;
|
56 |
+
color: var(--subtitle-color);
|
57 |
+
text-align: center;
|
58 |
+
}
|
59 |
|
60 |
html, body, #app {
|
61 |
height: 100%;
|
|
|
187 |
</button>
|
188 |
<div class="chat-outer-container">
|
189 |
<div class="chat-container">
|
190 |
+
<h1 class="title">PitchPerfect</h1>
|
191 |
+
<h2 class="subtitle">by Elevatics.ai</h2>
|
192 |
+
<!-- <h1 class="text-center mb-4">Presentation Chatbot</h1> -->
|
193 |
<div v-for="(message, index) in chatHistory" :key="index" class="message" :class="message.type === 'user' ? 'user-message' : 'bot-message'">
|
194 |
<div v-if="message.type === 'bot'" v-html="message.content"></div>
|
195 |
<div v-else>{{ message.content }}</div>
|