const title = "Sign in with Lens"; function navigate() { if (props.handle != null) { const handle = props.handle; if (!handle.includes(".lens")) { handle = handle + ".lens"; } console.log(handle); const uri = `https://www.lensfrens.xyz/${handle.toLowerCase()}/follow`; window.open(uri, "_newtab"); } } return ( <button style={{ backgroundColor: "#ABFE2C", color: "black", borderRadius: "5px", padding: "10px", border: "none", }} onClick={navigate} > {title} </button> );