mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 13:16:21 -04:00
30 lines
1.0 KiB
TypeScript
30 lines
1.0 KiB
TypeScript
// @ts-nocheck
|
|
|
|
// Legacy
|
|
import comicNeueLatin400NormalWoff from "@fontsource/comic-neue/files/comic-neue-latin-400-normal.woff";
|
|
import comicNeueLatin400NormalWoff2 from "@fontsource/comic-neue/files/comic-neue-latin-400-normal.woff2";
|
|
import comicNeueLatin700NormalWoff from "@fontsource/comic-neue/files/comic-neue-latin-700-normal.woff";
|
|
import comicNeueLatin700NormalWoff2 from "@fontsource/comic-neue/files/comic-neue-latin-700-normal.woff2";
|
|
|
|
const ComicNeue = {
|
|
preloadUrl: null, // don't preload, only used on one page
|
|
family: [
|
|
{
|
|
fontFamily: "Comic Neue",
|
|
fontStyle: "normal",
|
|
fontDisplay: "swap",
|
|
fontWeight: 400,
|
|
src: `url(${comicNeueLatin400NormalWoff2}) format("woff2"), url(${comicNeueLatin400NormalWoff}) format("woff")`,
|
|
},
|
|
{
|
|
fontFamily: "Comic Neue",
|
|
fontStyle: "normal",
|
|
fontDisplay: "swap",
|
|
fontWeight: 700,
|
|
src: `url(${comicNeueLatin700NormalWoff2}) format("woff2"), url(${comicNeueLatin700NormalWoff}) format("woff")`,
|
|
},
|
|
],
|
|
};
|
|
|
|
export default ComicNeue;
|