Implementa um sistema para registrar e gerenciar mudanças de código de forma eficiente. A estrutura permite a adição, remoção e edição de entradas de mudanças, facilitando o acompanhamento do histórico de alterações no projeto.
39 lines
776 B
TypeScript
39 lines
776 B
TypeScript
import { Inter, Funnel_Display } from "next/font/google";
|
|
import localFont from "next/font/local";
|
|
|
|
// const aeonik = localFont({
|
|
// src: [
|
|
// {
|
|
// path: "../fonts/aeonik-regular.otf",
|
|
// weight: "400",
|
|
// style: "normal",
|
|
// },
|
|
// ],
|
|
// });
|
|
|
|
const anthropic_sans = localFont({
|
|
src: [
|
|
{
|
|
path: "../fonts/anthropic-sans.woff2",
|
|
weight: "400",
|
|
style: "normal",
|
|
},
|
|
],
|
|
});
|
|
|
|
const funnel_display = Funnel_Display({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
weight: ["400", "500", "600", "700"],
|
|
});
|
|
|
|
const main_font = funnel_display;
|
|
const money_font = anthropic_sans;
|
|
const title_font = anthropic_sans;
|
|
|
|
export { main_font, money_font, title_font };
|