@@ -16,6 +16,7 @@ import LogStream from "./images/log-stream.svg";
1616import LogStreamSearch from "./images/log-stream-search.svg" ;
1717import { useState } from "react" ;
1818import { useStyledDarkMode } from "../../../theme/app/useStyledDarkMode" ;
19+ import DocsIcon from "../../Pricing/icons/docs.js" ;
1920
2021const VisualizerFeaturesWrapper = styled . div `
2122
@@ -120,7 +121,7 @@ z-index: 10;
120121 transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out 0.3s;
121122 /* transition: transform 1s ease-in-out 0.2s; */
122123 }
123- ` ;
124+ } `;
124125
125126const KanvasisualizerFeatures = ( ) => {
126127 const [ isHovered , setisHovered ] = useState ( false ) ;
@@ -163,14 +164,17 @@ const KanvasisualizerFeatures = () => {
163164 </ div >
164165 </ Col >
165166 < Col $sm = { 12 } $md = { 6 } $lg = { 4 } >
167+ < a href = "https://docs.layer5.io/kanvas/operator/" style = { { textDecoration : 'none' , color : 'inherit' , display : 'block' } } >
166168 < div className = { ( isHovered && hoveredFeature != "Feature3" ) ? "project__block__inner darken" : "project__block__inner" } onMouseOver = { ( ) => handleMouseOver ( 3 ) } onMouseOut = { handleMouseOut } >
167169 < div className = "feature-image" >
168170 < img src = { InteractiveTerminal } alt = "Interactive Terminal" style = { { position : "absolute" , width : "80%" , zIndex : "0" } } />
169171 < img src = { InteractiveTerminalCode } alt = "" className = { hoveredFeature == "Feature3" ? "secondary-image-visible" : "secondary-image" } style = { { position : "relative" , width : "80%" , zIndex : "10" } } />
170172 </ div >
171173 < h3 > Interactive Terminal</ h3 >
172174 < p > Establish sessions with one or more pods at a time.</ p >
175+ < DocsIcon style = { { position : 'absolute' , top : '16px' , right : '16px' , color : '#00D3A9' } } className = "docs" />
173176 </ div >
177+ </ a >
174178 </ Col >
175179 < Col $sm = { 12 } $md = { 6 } $lg = { 4 } >
176180 < div className = { ( isHovered && hoveredFeature != "Feature4" ) ? "project__block__inner darken" : "project__block__inner" } onMouseOver = { ( ) => handleMouseOver ( 4 ) } onMouseOut = { handleMouseOut } >
0 commit comments