Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

Navbar Componet Nextjs

const Navbar = () => {
  return (
    <nav className={styles.mainnav}>
        <ul>
          <Link href='/'><a><li>Home</li></a></Link>
          <Link href='/about'><a><li>About</li></a></Link>
          <Link href='/blog'><a><li>Blog</li></a></Link>
          <Link href='/contact'><a><li>Contact</li></a></Link>
        </ul>
      </nav>
  )
}

export default Navbar
Comment

PREVIOUS NEXT
Code Example
Javascript :: axios get status code 
Javascript :: Generate Random Whole Numbers within a Range 
Javascript :: : Cannot set the body fields of a Request with content-type "application/json". 
Javascript :: find element by two attributes jquery 
Javascript :: vue watch object member 
Javascript :: react native remove text from string 
Javascript :: ecmascript compose 
Javascript :: readfilesync return buffer 
Javascript :: how get first option in select in vue js 
Javascript :: javascript password regular expression 
Javascript :: javascript find and replace text in html 
Javascript :: set view engine to ejs in express 
Javascript :: convert array of string to array of objects javascript 
Javascript :: javascript map Removing Elements 
Javascript :: get odd number in array 
Javascript :: append to array js 
Javascript :: cypress custom error message 
Javascript :: curl post json object command 
Javascript :: docs where field exists 
Javascript :: Scrollbar inside Dropdown of antD component React 
Javascript :: npm md5 
Javascript :: how to change checkbox state in jquery 
Javascript :: opening a link in another tab in react 
Javascript :: import fetch from ("node-fetch"); ^^^^^^ SyntaxError: Cannot use import statement outside a module 
Javascript :: __dirname is not defined 
Javascript :: jquery select option by text 
Javascript :: discordjs eval 
Javascript :: node get absolute path 
Javascript :: add date in javascript 
Javascript :: jquery get radio button checked 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =