21 lines
461 B
TypeScript
21 lines
461 B
TypeScript
import { Inter as FontSans } from "next/font/google";
|
|
import localFont from "next/font/local";
|
|
|
|
export const fontSans = FontSans({
|
|
subsets: ["latin"],
|
|
variable: "--font-sans",
|
|
});
|
|
|
|
export const fontHeading = localFont({
|
|
src: "./CalSans-SemiBold.woff2",
|
|
variable: "--font-heading",
|
|
});
|
|
|
|
export const fontSatoshi = localFont({
|
|
src: "./satoshi-variable.woff2",
|
|
variable: "--font-satoshi",
|
|
weight: "300 900",
|
|
display: "swap",
|
|
style: "normal",
|
|
});
|