14 lines
335 B
TypeScript
14 lines
335 B
TypeScript
import { Inter } from "next/font/google";
|
|
|
|
// export const KareliaWeb = localFont({
|
|
// src: "./fonts/kareliaWeb.woff2",
|
|
// variable: "--KareliaWebRegular",
|
|
// weight: "400",
|
|
// });
|
|
|
|
export const primary_Inter = Inter({
|
|
subsets: ["latin"],
|
|
weight: ["100", "200", "300", "500", "600", "700"],
|
|
variable: "--font_primary",
|
|
});
|