@@ -4,76 +4,77 @@ import { PiHandTap } from "react-icons/pi";
44import { GiFly } from "react-icons/gi" ;
55import QueryImage from "./assets/query-img.png" ;
66import { IconContext } from "react-icons" ;
7-
7+ import HomeVideo from "./components/HomeVideo" ;
88import "./index.css" ;
99import { Link } from "react-router-dom" ;
1010import MainLayout from "./layout/MainLayout" ;
1111
1212function App ( ) {
13-
14- return (
15- < div >
16- < MainLayout >
17- < div className = "main-layout-body" >
18- < div className = "home-body" >
19- < h2 className = "home-title" > Welcome to ProteinWeaver</ h2 >
20- < h4 >
21- A tool for protein network exploration in the context of The Gene Ontology (GO).
22- < br > </ br >
23- Free and open to all users with no login requirement.
24- < br > </ br >
25- Learn more about ProteinWeaver < Link className = "home-link-about" to = { "/about" } > here.</ Link >
26- </ h4 >
27- < br > </ br >
28- < Link to = { `/query` } >
29- < button className = "home-button" >
30- Start exploring networks!
31- </ button >
32- </ Link >
33- < div className = "home-body-container" >
34- < div >
35- < div className = "home-feature-container" >
36- < IconContext . Provider
37- value = { { className : "home-icon" , size : 70 } }
38- >
39- < TbEyeCode />
40- </ IconContext . Provider >
41- < h4 className = "home-feature-text" >
42- Visualize networks with Cytoscape.js
43- </ h4 >
44- </ div >
45- < div className = "home-feature-container" >
46- < IconContext . Provider
47- value = { { className : "home-icon" , size : 70 } }
48- >
49- < PiHandTap />
50- </ IconContext . Provider >
51- < h4 className = "home-feature-text" >
52- Explore interactive graphs
53- </ h4 >
54- </ div >
55- < div className = "home-feature-container" >
56- < IconContext . Provider
57- value = { { className : "home-icon" , size : 70 } }
58- >
59- < GiFly />
60- </ IconContext . Provider >
61- < h4 className = "home-feature-text" >
62- Hosts multiple non-human model organisms
63- </ h4 >
13+ return (
14+ < div >
15+ < MainLayout >
16+ < div className = "main-layout-body" >
17+ < div className = "home-body" >
18+ < h2 className = "home-title" > Welcome to ProteinWeaver</ h2 >
19+ < h4 >
20+ A tool for protein network exploration in the
21+ context of The Gene Ontology (GO).
22+ < br > </ br >
23+ Free and open to all users with no login
24+ requirement.
25+ < br > </ br >
26+ Learn more about ProteinWeaver{ " " }
27+ < Link className = "home-link-about" to = { "/about" } >
28+ here.
29+ </ Link >
30+ </ h4 >
31+ < br > </ br >
32+ < Link to = { `/query` } >
33+ < div className = "button-align" >
34+ { " " }
35+ < button className = "home-button" >
36+ Start exploring networks!
37+ </ button >
38+ </ div >
39+ </ Link >
40+ < div className = "home-body-container" >
41+ < div className = "home-feature-container" >
42+ < IconContext . Provider
43+ value = { { className : "home-icon" , size : 70 } }
44+ >
45+ < TbEyeCode />
46+ </ IconContext . Provider >
47+ < h4 className = "home-feature-text" >
48+ Visualize networks with Cytoscape.js
49+ </ h4 >
50+ </ div >
51+ < div className = "home-feature-container" >
52+ < IconContext . Provider
53+ value = { { className : "home-icon" , size : 70 } }
54+ >
55+ < PiHandTap />
56+ </ IconContext . Provider >
57+ < h4 className = "home-feature-text" >
58+ Explore interactive graphs
59+ </ h4 >
60+ </ div >
61+ < div className = "home-feature-container" >
62+ < IconContext . Provider
63+ value = { { className : "home-icon" , size : 70 } }
64+ >
65+ < GiFly />
66+ </ IconContext . Provider >
67+ < h4 className = "home-feature-text" >
68+ Hosts multiple non-human model organisms
69+ </ h4 >
70+ </ div >
71+ </ div >
72+ < HomeVideo > </ HomeVideo >
73+ </ div >
6474 </ div >
65- </ div >
66- < img
67- className = "home-query-img"
68- src = { QueryImage }
69- alt = "Query-Image"
70- />
71- </ div >
72- </ div >
75+ </ MainLayout >
7376 </ div >
74- </ MainLayout >
75- </ div >
76- ) ;
77+ ) ;
7778}
7879
7980export default App ;
0 commit comments