mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 09:05:22 -04:00
11 lines
239 B
TypeScript
11 lines
239 B
TypeScript
import { Source_Code_Pro as SourceCodeProLoader } from "next/font/google";
|
|
|
|
const SourceCodePro = SourceCodeProLoader({
|
|
weight: "variable",
|
|
subsets: ["latin"],
|
|
display: "fallback",
|
|
preload: true,
|
|
});
|
|
|
|
export default SourceCodePro;
|