Skip to content

Commit e204ecc

Browse files
authored
Merge pull request #10 from CIAT-DAPA/develop
Develop
2 parents 362dd4d + 574d89d commit e204ecc

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

src/public/favicon.ico

222 KB
Binary file not shown.

src/public/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
77
<meta name="viewport" content="width=device-width, initial-scale=1" />
88
<meta name="theme-color" content="#000000" />
9-
<meta name="description" content="Web site created using create-react-app" />
9+
<meta name="description" content="Viewer Gap analysis" />
1010
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
1111
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
1212
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.1/dist/leaflet.css" />
@@ -29,7 +29,7 @@
2929
3030
</script> -->
3131

32-
<title>Spcat Website</title>
32+
<title>Viewer Gap analysis</title>
3333

3434
</head>
3535

src/public/logo192.png

30.8 KB
Loading

src/public/logo512.png

163 KB
Loading

src/src/assets/img/logo.png

95.7 KB
Loading

src/src/components/menu/Menu.js

+15-9
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,26 @@ import Navbar from 'react-bootstrap/Navbar';
44
import './Menu.css'
55
import { Link } from 'react-router-dom'
66
import React from "react";
7+
import logo from '../../assets/img/logo.png'
78

89
function Menu() {
910
return (
1011
<Navbar variant="dark" collapseOnSelect expand="lg" className='menu' >
1112
<Container className='py-1'>
12-
<Link className="navbar-brand" to="/">Home</Link>
13-
<Navbar.Toggle aria-controls="responsive-navbar-nav" />
14-
<Navbar.Collapse className='justify-content-end' id="responsive-navbar-nav">
15-
<Nav className="justify-content-end">
16-
<Link className="nav-link" to="/maptools" >Viewer</Link>
17-
<Link className="nav-link" to="/about" >About</Link>
18-
</Nav>
19-
</Navbar.Collapse>
20-
</Container>
13+
<div className="logo">
14+
<img src={logo} className="me-2" style={{width: "40px"}}></img>
15+
</div>
16+
<Link className="navbar-brand" to="/">Home</Link>
17+
<Navbar.Toggle aria-controls="responsive-navbar-nav" />
18+
<Navbar.Collapse className='justify-content-end' id="responsive-navbar-nav">
19+
<Nav className="justify-content-end">
20+
<Link className="nav-link" to="/maptools" >Viewer</Link>
21+
<a className="nav-link" href="https://api.gapanalysistools.org/" target="_blank">Api</a>
22+
<Link className="nav-link" to="/about" >About</Link>
23+
</Nav>
24+
</Navbar.Collapse>
25+
</Container>
26+
2127
</Navbar>
2228
);
2329
}

0 commit comments

Comments
 (0)