File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,18 @@ import React from "react";
22import styled from "styled-components" ;
33import { SectionNav } from "components/SectionNav" ;
44import { SectionNavAnchorItem } from "components/SectionNavItem" ;
5+ import { Link } from "@reach/router" ;
56
67export default ( ) => {
78 return (
89 < >
910 < EasyAccessWrapper >
1011 < EasyAccessNav >
1112 < span >
12- < strong > Try it in a Browser</ strong > !
13+ < strong >
14+ < Link to = { "/" } > Try Interscript!</ Link >
15+ </ strong >
16+
1317 </ span >
1418 < EasyAccessNavItem key = "convert" href = "/demo#convert" >
1519 Convert
@@ -37,6 +41,10 @@ const EasyAccessWrapper = styled.div`
3741 @media screen and (max-width: 1200px) {
3842 display: none;
3943 }
44+
45+ a {
46+ color: black;
47+ }
4048` ;
4149
4250const EasyAccessNav = styled ( SectionNav ) `
Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ const QuickBox: React.FC<{ maps: string[]; metaData?: InterscriptMetaDataMap }>
109109 : undefined ,
110110 } }
111111 onChange = { onChangeSource }
112+ autoFocus
112113 />
113114 < ConvertButton
114115 onClick = { handleConvert }
You can’t perform that action at this time.
0 commit comments