Tailwindcss + Nextjs not working on components only
I can’t really figure out what’s going on. I have a Navbar component that I am importing to certain pages. I’ve super simplified it its just a styled div with a Link inside for now: /component/Navbar.js <div className="flex items-center justify-center filter drop-shadow-md bg-white h-20"> <Link className="text-xl font-semibold" href="/">LOGO</Link> </div> These classes are appearing in the… Read More Tailwindcss + Nextjs not working on components only