next-typography
v1.0.1
Published
Add Typography.js styles to your Next JS app in the simplest possible way.
Readme
Add Typography.js styles to your Next JS application in the simplest possible way.
Getting started
yarn add next-typographypages/_app.jsx
import NextTypography from "next-typography";
import typography from "my/typography/setup";
function MyApp({ Component, pageProps }) {
return (
<>
<NextTypography typography={typography} />
<Component {...pageProps} />
</>
);
}Loading Google Fonts
You can load your Google fonts via this component too. There are 3 settings to font loading provided via the googleFontLoading property:
- "none" (default) - No fonts will be loaded
- "single" - append a single
<link />element. This option can be faster with traditional HTTP(S) connections, however there are caveats:- HTTP2 can load your fonts in parallel, potentially descreasing time to load depending on the amount of fonts you're loading.
- The likelihood of the request being served from cache (due to a different website loading the same fonts) decreases drastically.
- "multiple" - append a
<link />element for each Google Font to be loaded.
Example
pages/_app.jsx
import NextTypography from "next-typography";
import typography from "my/typography/setup";
function MyApp({ Component, pageProps }) {
return (
<>
<NextTypography typography={typography} googleFontLoading="multiple" />
<Component {...pageProps} />
</>
);
}