Untitled

mail@pastecode.io avatar
unknown
javascript
2 years ago
741 B
2
Indexable
Never
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 Navbar