223223 box-shadow : 0 8px 25px rgba (79 , 172 , 254 , 0.6 );
224224 }
225225
226+ /* Launching Soon Button Style */
227+ .feature-cta .launching-soon {
228+ background : linear-gradient (45deg , # ff9800 0% , # ffc107 100% );
229+ color : # 333 ;
230+ cursor : default;
231+ pointer-events : none;
232+ opacity : 0.8 ;
233+ box-shadow : 0 4px 15px rgba (255 , 152 , 0 , 0.3 );
234+ }
235+
236+ .feature-cta .launching-soon : hover {
237+ transform : none;
238+ box-shadow : 0 4px 15px rgba (255 , 152 , 0 , 0.3 );
239+ }
240+
226241 .feature-cta .research {
227242 background : linear-gradient (45deg , # fa709a 0% , # fee140 100% );
228243 box-shadow : 0 4px 15px rgba (250 , 112 , 154 , 0.4 );
@@ -791,10 +806,10 @@ <h2 class="feature-title">Canvas Creative Environment</h2>
791806 < li > Interactive visualization tools</ li >
792807 </ ul >
793808
794- < a href =" Canvas.html " class ="feature-cta ">
795- < span > 🎨 </ span >
796- Launch Canvas
797- </ a >
809+ < div class ="feature-cta launching-soon ">
810+ < span > 🚀 </ span >
811+ Launching Soon
812+ </ div >
798813 </ div >
799814 </ div >
800815
@@ -891,13 +906,14 @@ <h2 class="feature-title">Canvas Creative Environment</h2>
891906 window . AppConfig . trackEvent ( 'keyboard_navigation' , 'navigation' , 'playground' ) ;
892907 }
893908 }
894- if ( e . key === '3' || e . key === 'c' || e . key === 'C' ) {
895- window . location . href = 'Canvas.html' ;
896- // Track navigation event
897- if ( window . AppConfig ) {
898- window . AppConfig . trackEvent ( 'keyboard_navigation' , 'navigation' , 'canvas' ) ;
899- }
900- }
909+ // Canvas navigation temporarily disabled (launching soon)
910+ // if (e.key === '3' || e.key === 'c' || e.key === 'C') {
911+ // window.location.href = 'Canvas.html';
912+ // // Track navigation event
913+ // if (window.AppConfig) {
914+ // window.AppConfig.trackEvent('keyboard_navigation', 'navigation', 'canvas');
915+ // }
916+ // }
901917 } ) ;
902918
903919 // Add smooth scroll behavior for better UX
@@ -914,13 +930,12 @@ <h2 class="feature-title">Canvas Creative Environment</h2>
914930 } ) ;
915931 } ) ;
916932
917- // Track feature card clicks
918- document . querySelectorAll ( '.feature-cta' ) . forEach ( ( cta , index ) => {
933+ // Track feature card clicks (exclude launching-soon buttons)
934+ document . querySelectorAll ( '.feature-cta:not(.launching-soon) ' ) . forEach ( ( cta , index ) => {
919935 cta . addEventListener ( 'click' , ( ) => {
920936 if ( window . AppConfig ) {
921937 const feature = index === 0 ? 'deepresearch' :
922- index === 1 ? 'playground' :
923- index === 2 ? 'canvas' : 'unknown' ;
938+ index === 1 ? 'playground' : 'unknown' ;
924939 window . AppConfig . trackEvent ( 'feature_clicked' , 'navigation' , feature ) ;
925940 }
926941 } ) ;
0 commit comments