All Questions
2
questions
1
vote
1
answer
2k
views
How to add CSS or styled-components to Link tag in Next.js? [duplicate]
Cannot add styles in any way to next.js <Link> tag.
code:
import Link from "next/link";
import styles from "../Components.module.css";
export default function SubjectBTN({ ...
0
votes
0
answers
56
views
next/link takes too long to load a new path
I have built a NextJS dashboard which uses next/link to navigate through a dynamic no of pages and hence I have mapped a next/Link component for each page.
const navbarItems = [
{ link: '/', Icon: ...