mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 07:58:26 -04:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
import { Comic_Neue as ComicNeueLoader } from "next/font/google";
|
|
|
|
const ComicNeue = ComicNeueLoader({
|
|
weight: ["400", "700"],
|
|
style: ["normal", "italic"],
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
fallback: ["'Comic Sans MS'", "'Comic Sans'"],
|
|
adjustFontFallback: false,
|
|
preload: false,
|
|
});
|
|
|
|
export default ComicNeue;
|