File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -396,6 +396,58 @@ body::before {
396396.c-str { color : #a5d6ff ; }
397397.c-num { color : #79c0ff ; }
398398
399+ /* Hero Visual Features */
400+ .hero-visual-features {
401+ display : grid ;
402+ grid-template-columns : 1fr 1fr ;
403+ gap : 16px ;
404+ margin-top : 16px ;
405+ }
406+
407+ .visual-feature {
408+ display : flex ;
409+ align-items : center ;
410+ gap : 12px ;
411+ padding : 16px ;
412+ background : var (--bg-card );
413+ border : 1px solid var (--border );
414+ border-radius : var (--radius );
415+ backdrop-filter : blur (10px );
416+ }
417+
418+ .visual-feature-icon {
419+ width : 40px ;
420+ height : 40px ;
421+ display : flex ;
422+ align-items : center ;
423+ justify-content : center ;
424+ background : rgba (45 , 103 , 255 , 0.15 );
425+ border-radius : var (--radius );
426+ color : #79c0ff ;
427+ }
428+
429+ .visual-feature-icon.green {
430+ background : rgba (0 , 184 , 148 , 0.15 );
431+ color : var (--accent );
432+ }
433+
434+ .visual-feature-text {
435+ display : flex ;
436+ flex-direction : column ;
437+ gap : 2px ;
438+ }
439+
440+ .visual-feature-title {
441+ font-size : 14px ;
442+ font-weight : 600 ;
443+ color : var (--text-primary );
444+ }
445+
446+ .visual-feature-desc {
447+ font-size : 13px ;
448+ color : var (--text-muted );
449+ }
450+
399451/* Graph Section */
400452.graph-section {
401453 padding : 80px 48px ;
@@ -869,6 +921,11 @@ body::before {
869921 padding : 16px ;
870922 overflow-x : auto ;
871923 }
924+
925+ /* Hero visual features */
926+ .hero-visual-features {
927+ grid-template-columns : 1fr ;
928+ }
872929
873930 /* Graph section - vertical layout on mobile */
874931 .graph-section {
Original file line number Diff line number Diff line change 1313 BookOpen ,
1414 GitBranch ,
1515 Bug ,
16- Github
16+ Github ,
17+ Brain ,
18+ Leaf
1719 } from ' lucide-svelte' ;
1820
1921 // Form state
@@ -291,6 +293,27 @@ result = <span class="c-fn">repo_search</span>(
291293)
292294<span class =" c-comment" ># 4,456 sources -> 5 relevant in 47ms</span ></pre >
293295 </div >
296+
297+ <div class =" hero-visual-features" >
298+ <div class =" visual-feature" >
299+ <div class =" visual-feature-icon" >
300+ <Brain size ={20 } />
301+ </div >
302+ <div class =" visual-feature-text" >
303+ <span class =" visual-feature-title" >Self-Learning</span >
304+ <span class =" visual-feature-desc" >Gets smarter as you search</span >
305+ </div >
306+ </div >
307+ <div class =" visual-feature" >
308+ <div class =" visual-feature-icon green" >
309+ <Leaf size ={20 } />
310+ </div >
311+ <div class =" visual-feature-text" >
312+ <span class =" visual-feature-title" >Green Energy</span >
313+ <span class =" visual-feature-desc" >80% less compute per query</span >
314+ </div >
315+ </div >
316+ </div >
294317 </div >
295318</section >
296319
You can’t perform that action at this time.
0 commit comments