Skip to content

Commit dbf7d82

Browse files
authored
chore: addressing comments
* chore: align comments * chore: adjust gradients * chore: replace Nuclia text with Progress Agentic RAG * chore: update hero gradient
1 parent 869799e commit dbf7d82

File tree

4 files changed

+32
-25
lines changed

4 files changed

+32
-25
lines changed

client/src/components/SearchInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const SearchInput: React.FC<SearchInputProps> = ({
3838

3939
return (
4040
<TextArea
41-
className={'search-input k-white-space-none k-align-items-center k-flex-col k-flex-md-row k-w-full k-p-0.5'}
41+
className={'search-input k-white-space-none k-align-items-center k-flex-col k-flex-md-row k-w-full k-p-1'}
4242
rounded="full"
4343
size="large"
4444
placeholder={placeholder}

client/src/pages/AiSearch.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export default function AiSearch() {
160160
Progress Agentic RAG Knowledge
161161
</h1>
162162
<p className="ai-search-description !k-mb-0">
163-
Search our comprehensive Nuclia knowledge base with AI-powered intelligent search for precise, contextual results about Nuclia features, capabilities, and best practices
163+
Search our comprehensive Progress Agentic RAG knowledge base with AI-powered intelligent search for precise, contextual results about Progress Agentic RAG features, capabilities, and best practices
164164
</p>
165165
</div>
166166

@@ -180,7 +180,7 @@ export default function AiSearch() {
180180
<p className="ai-search-popular-label !k-mb-0">
181181
Popular searches:
182182
</p>
183-
<div className="k-d-flex k-flex-wrap k-gap-1.5 k-justify-content-flex-start">
183+
<div className="k-d-flex k-flex-wrap k-gap-1.5 k-justify-content-flex-start k-pb-4.5">
184184
{popularSearches.map((searchText, index) => (
185185
<SearchPill key={index} text={searchText} onClick={handleExampleSearch} disabled={isLoading} />
186186
))}

client/src/pages/ValueProposition.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default function ValueProposition() {
137137
Progress Agentic RAG Value
138138
</h1>
139139
<p className="value-proposition-description !k-mb-0">
140-
Generate a customized value proposition showing exactly how Nuclia delivers ROI for your specific industry, company size, and use case.
140+
Generate a customized value proposition showing exactly how Progress Agentic RAG delivers ROI for your specific industry, company size, and use case.
141141
</p>
142142
</div>
143143
</div>

client/src/styles/styles.css

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -67,16 +67,10 @@ html, body, #root {
6767
--kendo-h3-line-height: 1.2;
6868
}
6969

70-
.hero {
70+
.value-proposition-results-hero.hero {
7171
background: linear-gradient(180deg, rgba(250, 250, 250, 0.80) 85%, rgba(236, 236, 236, 0.80) 100%);
7272
}
7373

74-
.financial-analysis .hero,
75-
.value-proposition .hero,
76-
.knowledge-assistant-hero-wrapper {
77-
background: transparent;
78-
}
79-
8074
/* Search Input */
8175
.search-input {
8276
border-width: 2px;
@@ -114,7 +108,7 @@ html, body, #root {
114108
box-shadow: var(--kendo-elevation-4);
115109
}
116110

117-
.search-input .send-button {
111+
.search-input .k-button {
118112
border: none;
119113

120114
}
@@ -226,7 +220,7 @@ html, body, #root {
226220
transform-origin: center;
227221
border-radius: 815px;
228222
pointer-events: none;
229-
223+
z-index: -1;
230224
}
231225

232226
.user-selection-wrapper:after {
@@ -255,7 +249,8 @@ html, body, #root {
255249
border-radius: 815px;
256250
pointer-events: none;
257251
background: conic-gradient(from 180deg at 49.93% 47.29%, rgba(0, 119, 255, 0.6) 0deg, rgba(0, 200, 255, 0.3) 180deg, rgba(255, 0, 251, 0.6) 360deg);
258-
}
252+
z-index: -1;
253+
}
259254

260255
/* Financial Analysis gradient - positioned higher in the content, only shown before conversation starts */
261256
.financial-analysis .chat-wrapper.show-gradient::after {
@@ -271,13 +266,12 @@ html, body, #root {
271266
rgba(0, 119, 255, 0.6) 360deg
272267
);
273268
filter: blur(75px);
274-
opacity: 0.6;
275269
left: 50%;
276270
transform: translateX(-50%);
277-
bottom: 115px;
271+
bottom: 64px;
278272
border-radius: 815px;
279273
pointer-events: none;
280-
z-index: 0;
274+
z-index: -1;
281275
}
282276

283277
/* Knowledge Assistant gradient - positioned lower in the content, only shown before conversation starts */
@@ -294,13 +288,12 @@ html, body, #root {
294288
rgba(0, 119, 255, 0.6) 360deg
295289
);
296290
filter: blur(75px);
297-
opacity: 0.6;
298291
left: 50%;
299-
bottom: 115px;
292+
bottom: 0;
300293
transform: translateX(-50%);
301294
border-radius: 815px;
302295
pointer-events: none;
303-
z-index: 0;
296+
z-index: -1;
304297
}
305298

306299
.k-drawer-item {
@@ -784,14 +777,22 @@ html, body, #root {
784777
/* Search Input Buttons */
785778
.k-button-lg.search-input-button,
786779
.k-button-lg.send-button {
787-
padding: 11px;
780+
padding: 10px;
781+
}
782+
783+
.search-input .k-button {
784+
color: #A1B0C7;
788785
}
789786

790787
.search-input .send-button {
791788
color: #fff;
792789
background-color: #A1B0C7;
793790
}
794791

792+
.search-input .k-textarea {
793+
align-self: stretch;
794+
}
795+
795796
/* Vectors Background */
796797
.vectors-background {
797798
right: 0;
@@ -1171,6 +1172,10 @@ html, body, #root {
11711172
padding: 10px;
11721173
}
11731174

1175+
.home-section .search-input-container {
1176+
max-width: 800px;
1177+
}
1178+
11741179
.home-demo-icon {
11751180
width: 48px;
11761181
height: 48px;
@@ -1258,13 +1263,15 @@ html, body, #root {
12581263
padding: 24px;
12591264
}
12601265

1261-
.value-proposition-results-container {
1262-
background-color: rgba(255, 255, 255, 0.6);
1266+
.value-proposition-textarea > .k-input-inner {
1267+
padding: 0;
12631268
}
12641269

1265-
.value-proposition-results-hero {
1270+
.value-proposition-results-hero,
1271+
.ai-search-results-hero {
12661272
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
12671273
background: linear-gradient(180deg, rgba(250, 250, 250, 0.80) 85%, rgba(236, 236, 236, 0.80) 100%);
1274+
z-index: -2;
12681275
}
12691276

12701277
.value-proposition-results-title {
@@ -1281,7 +1288,7 @@ html, body, #root {
12811288
background-color: rgba(255, 255, 255, 0.5);
12821289
border: 1px solid white;
12831290
box-shadow: 0 2px 6px 0 rgba(13, 10, 44, 0.08);
1284-
backdrop-filter: blur(2px);
1291+
position: relative;
12851292
}
12861293

12871294
.value-proposition-label {

0 commit comments

Comments
 (0)