After adding a CDN to the head section of my Next.js project, I encountered an issue where it was not working as expected.
import Head from "next/head";
<Head>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
></link>
</Head>;
My attempt to render a simple icon resulted in only showing the string "add" instead of displaying the actual icon.
<i className="material-icons">add</i>