Untitled
unknown
javascript
3 years ago
741 B
13
Indexable
import React from 'react'
import { Link } from 'react-router-dom'
import "../styles/Navbar.css"
function Navbar() {
return <div className="navbar">
<div className="logo">
<img src="./xeakerLogo.png" alt="logo"/>
</div>
<div className='links'>
<Link to="/tvota" onClick={() => {window.location.href="/tvota"}} >The Vision Of The Ant</Link>
<Link to="/thule" onClick={() => {window.location.href="/tvota"}} >Thule</Link>
<Link to="/tvota/chat" onClick={() => {window.location.href="/chat"}} >Chat</Link>
<Link to="/tvota/contact" onClick={() => {window.location.href="/chat"}} >Contact</Link>
</div>
</div>
}
export default NavbarEditor is loading...