How to add a navbar to my nextjs project? #1896
RanjithKannan03
started this conversation in
Chat about dev stuff
Replies: 2 comments
-
Hi. Tailwind Elements does not have a Navbar JS component. Most of our navbars use only Dropdown and Collapse. Checkout the documentation: |
Beta Was this translation helpful? Give feedback.
0 replies
-
None of your elements have ID |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I already have tailwind css and I use nextjs with javascript. This is my code `'use client'
import React from 'react'
import Script from 'next/script'
import { useState,useEffect } from 'react'
const NavBarv2 = () => {
return (
export default NavBarv2;`
I get the error "TypeError: Navbar is not a constructor". The date picker given in the example worked. What should I do? I am really confused.
Beta Was this translation helpful? Give feedback.
All reactions